edgeport - v1.0.3
    Preparing search index...

    Interface DigestChallenge

    A parsed Digest authentication challenge from a WWW-Authenticate / Proxy-Authenticate header.

    1.0.3

    interface DigestChallenge {
        algorithm?: string;
        nonce: string;
        opaque?: string;
        qop?: string;
        realm: string;
    }
    Index
    algorithm?: string

    The algorithm (e.g. MD5, SHA-256), if the server named one.

    nonce: string

    The server nonce.

    opaque?: string

    The opaque value to echo back, if any.

    qop?: string

    The quality-of-protection list as sent (e.g. 'auth' or 'auth,auth-int'), if any.

    realm: string

    The authentication realm.