Package-level declarations

Functions

Link copied to clipboard
fun ClientFilters.DigestAuth(credentials: () -> Credentials, nonceGenerator: NonceGenerator, digestMode: DigestMode = Standard): Filter

fun ClientFilters.DigestAuth(credentials: Credentials, nonceGenerator: NonceGenerator = SECURE_NONCE, digestMode: DigestMode = Standard): Filter

Responds to Digest authentication challenges (RFC 7616).

fun ServerFilters.DigestAuth(realm: String, passwordLookup: (String) -> String?, qop: List<Qop> = listOf(Auth), digestMode: DigestMode = Standard, nonceGenerator: NonceGenerator, nonceVerifier: NonceVerifier, algorithm: DigestAlgorithm, usernameKey: RequestLens<String>? = null): Filter

Protects routes with Digest authentication (RFC 7616).