Class DigestAccessAuthenticationParameters
Represents a set of parameters that is needed for creating an application of cryptographic hashing with usage of nonce values to prevent replay attacks.
Inheritance
System.Object
DigestAccessAuthenticationParameters
Namespace: Cuemon.AspNetCore.Authentication
Assembly: Cuemon.AspNetCore.Authentication.dll
Syntax
public class DigestAccessAuthenticationParameters
Properties
| Improve this DocAlgorithm
Gets the algorithm to use when computing the HA1-, HA2-, and response hash values.
Declaration
public HashAlgorithmType Algorithm { get; }
Property Value
Type | Description |
---|---|
HashAlgorithmType | The algorithm to use when computing the HA1-, HA2-, and response hash values. |
Credentials
Gets the credentials used in the computation of HA1-, HA2-, and response hash values.
Declaration
public ImmutableDictionary<string, string> Credentials { get; }
Property Value
Type | Description |
---|---|
System.Collections.Immutable.ImmutableDictionary<System.String, System.String> | The credentials used in the computation of HA1-, HA2-, and response hash values. |
HttpMethod
Gets the HTTP method to include in the HA2 computed value.
Declaration
public string HttpMethod { get; }
Property Value
Type | Description |
---|---|
System.String | The HTTP method to include in the HA2 computed value. |
Password
Gets the password to include in the HA1 computed value.
Declaration
public string Password { get; }
Property Value
Type | Description |
---|---|
System.String | The password to include in the HA1 computed value. |