Interface ServerChallengeResponse

Result of challenge processing.

interface ServerChallengeResponse {
    challengeStatus?: string;
    decrementRetry?: boolean;
    parameters?: ParameterKV;
    success?: boolean;
}

Properties

challengeStatus?: string

ChallengeStatus to convey to the client.

Default Value

"error"
decrementRetry?: boolean

If true, this request counts as one failed try and decrements remaining tries.

Default Value

false
parameters?: ParameterKV

Parameter key-value pairs to convey to the client.

success?: boolean

If true, challenge has succeeded and server will issue the certificate.

Default Value

false

Generated using TypeDoc