Config
A configuration for the digest authentication provider.
Functions
Link copied to clipboard
fun digestProvider(digest: suspend (userName: String, realm: String) -> ByteArray?)
Content copied to clipboard
Configures a digest provider function that should fetch or compute message digest for the specified userName
and realm
. A message digest is usually computed based on username, realm and password concatenated with the colon character ':'. For example, "$userName:$realm:$password"
.
Link copied to clipboard
Adds an authentication filter to the list. For every application call the specified predicate is applied and if it returns true
then the authentication provider is skipped (no auth required for this call with this provider).