edgeport - v1.0.3
    Preparing search index...

    Interface DigestParams

    interface DigestParams {
        challenge: DigestChallenge;
        cnonce?: string;
        method: string;
        nc?: string;
        password: string;
        uri: string;
        username: string;
    }
    Index
    challenge: DigestChallenge

    The parsed server challenge.

    cnonce?: string

    Client nonce; a random one is generated when omitted.

    method: string

    The SIP method being authenticated (e.g. REGISTER).

    nc?: string

    Nonce count as 8 hex digits; defaults to 00000001.

    password: string

    The account password.

    uri: string

    The digest URI (the Request-URI of the challenged request).

    username: string

    The account username.