CertificateMaterial
Encoded certificate material in common interchange formats.
ts
interface CertificateMaterial {
readonly der: Uint8Array;
readonly pem: string;
readonly base64: string;
}Properties
readonlyder:Uint8Array— DER-encoded certificate bytes.readonlypem:string— PEM-encoded certificate.readonlybase64:string— Base64 encoding ofderwithout PEM armor.