/** *

Contains information about a returned public key.

*/ export interface _PublicKey { /** *

The DER encoded public key value in PKCS#1 format.

*/ Value?: ArrayBuffer | ArrayBufferView | string; /** *

The starting time of validity of the public key.

*/ ValidityStartTime?: Date | string | number; /** *

The ending time of validity of the public key.

*/ ValidityEndTime?: Date | string | number; /** *

The fingerprint of the public key.

*/ Fingerprint?: string; } export interface _UnmarshalledPublicKey extends _PublicKey { /** *

The DER encoded public key value in PKCS#1 format.

*/ Value?: Uint8Array; /** *

The starting time of validity of the public key.

*/ ValidityStartTime?: Date; /** *

The ending time of validity of the public key.

*/ ValidityEndTime?: Date; }