Options to construct NEW request packet.

interface Options {
    algoList?: readonly SigningAlgorithm<any, any, any>[];
    ecdhPub: CryptoKey;
    privateKey: NamedSigner.PrivateKey;
    profile: CaProfile;
    publicKey: NamedVerifier.PublicKey;
    signedInterestPolicy: SignedInterestPolicy;
    validity?: ValidityPeriod;
}

Hierarchy (view full)

Properties

algoList?: readonly SigningAlgorithm<any, any, any>[]

List of recognized algorithms for certificate request.

Default Value

SigningAlgorithmListSlim

ecdhPub: CryptoKey

Client ECDH public key.

Certificate request private key.

profile: CaProfile

CA profile packet.

Certificate request public key.

signedInterestPolicy: SignedInterestPolicy

Signed Interest validation policy.

validity?: ValidityPeriod

Desired ValidityPeriod.

Remarks

This will be truncated to maximum validity permitted by the CA profile.

Generated using TypeDoc