kinetex - v1.0.0-rc.1
    Preparing search index...

    Interface DigestChallenge

    Parameters extracted from a WWW-Authenticate: Digest challenge header.

    interface DigestChallenge {
        realm: string;
        nonce: string;
        opaque?: string;
        algorithm: string;
        qop?: string;
        stale?: boolean;
        domain?: string;
        charset?: string;
        userhash?: boolean;
    }
    Index

    Properties

    realm: string

    Required: authentication realm.

    nonce: string

    Required: server-provided nonce (used once).

    opaque?: string

    Opaque data echoed back by the client (if provided by server).

    algorithm: string

    Hash algorithm (default: "MD5"). RFC 7616 also defines "SHA-256", "SHA-512-256".

    qop?: string

    Quality of protection: "auth", "auth-int", or a comma-separated list.

    stale?: boolean

    true if the nonce is stale and a retry is allowed without user interaction.

    domain?: string

    Space-separated list of URL prefixes protected by this challenge.

    charset?: string

    Character encoding expected by the server (e.g. "UTF-8").

    userhash?: boolean

    true if the server supports hashed username (RFC 7616 §3.4.4).