Interface ClientChallengeContext

Contextual information for challenge continuation.

interface ClientChallengeContext {
    certRequestName: Name;
    challengeStatus: string;
    parameters: ParameterKV;
    remainingTime: number;
    remainingTries: number;
    requestId: Uint8Array;
}

Properties

certRequestName: Name

Certificate name of the self-signed certificate.

challengeStatus: string

Challenge specific status string.

parameters: ParameterKV

Challenge parameter key-value pairs, from CHALLENGE response packet.

remainingTime: number

Remaining time to complete challenge, in milliseconds.

remainingTries: number

Number of remaining tries to complete challenge.

requestId: Uint8Array

Request session ID.