Interface ClientOptions

interface ClientOptions {
    challenges: ClientChallenge[];
    endpoint?: Endpoint;
    privateKey: NamedSigner.PrivateKey;
    profile: CaProfile;
    publicKey: NamedVerifier.PublicKey;
    validity?: ValidityPeriod;
}

Properties

challenges: ClientChallenge[]

Challenges in preferred order.

endpoint?: Endpoint

Endpoint for communication. Default is an Endpoint on default Forwarder with up to 4 retransmissions.

Private key corresponding to the public key.

profile: CaProfile

CA profile.

Public key to request certificate for.

validity?: ValidityPeriod

ValidityPeriod, will be truncated to the maximum allowed by CA profile.

Generated using TypeDoc