This compiles ``` install(Authentication) { ...
# ktor
s
This compiles
Copy code
install(Authentication) {
        basic {
            realm = "ktor"
            validate { credentials ->
                if (credentials.name == credentials.password) {
                    UserIdPrincipal(credentials.name)
                } else {
                    null
                }
            }
        }