DigestProviderFunctionV2

typealias DigestProviderFunctionV2 = suspend (userName: String, realm: String, algorithm: DigestAlgorithm) -> ByteArray?(source)

Provides a message digest for the specified username, realm, and algorithm or returns null if a user is missing. This function could fetch digest from a database or compute it instead.

Report a problem