onvif
    Preparing search index...

    Interface X509Certificate

    An X.509 cerficiate as specified in RFC 5280.

    interface X509Certificate {
        alias?: string;
        certificateContent: unknown;
        certificateID: string;
        hasPrivateKey?: boolean;
        keyID: string;
        [key: string]: unknown;
    }

    Indexable

    • [key: string]: unknown
    Index
    alias?: string

    The client-defined alias of the certificate.

    certificateContent: unknown

    The base64-encoded DER representation of the X.509 certificate.

    certificateID: string

    The ID of the certificate.

    hasPrivateKey?: boolean

    The keystore has a matching private key.

    keyID: string

    The ID of the key that this certificate associates to the certificate subject.