digestProvider
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".
Note: This overload does not receive the algorithm parameter. Consider using the digestProvider overload that accepts DigestAlgorithm for full RFC 7616 support.
Configures a digest provider function that should fetch or compute message digest for the specified userName, realm, and algorithm.
The digest should be computed as H(username:realm:password) using the specified algorithm's hash function.
See also
for supported algorithms