Interface IDigestAuthenticationResponse

interface IDigestAuthenticationResponse {
    algorithm?: string;
    cnonce?: string;
    nc?: string;
    nonce?: string;
    opaque?: string;
    qop?: string;
    realm?: string;
    response?: string;
    uri?: string;
    username?: string;
    [index: string]: string | undefined;
}

Indexable

  • [index: string]: string | undefined

Properties

algorithm?: string
cnonce?: string
nc?: string
nonce?: string
opaque?: string
qop?: string
realm?: string
response?: string
uri?: string
username?: string