Package version:

The properties of a certificate used for authenticating a token.

interface TokenCertificate {
    encodedPemCertificate?: string;
    expiry?: any;
    name?: string;
    thumbprint?: string;
}

Properties

encodedPemCertificate?: string

Base 64 encoded string of the public certificate1 in PEM format that will be used for authenticating the token.

expiry?: any

The expiry datetime of the certificate.

name?: string
thumbprint?: string

The thumbprint of the certificate.