Package version:

Interface TlsaRecord

A TLSA record. For more information about the TLSA record format, see RFC 6698: https://www.rfc-editor.org/rfc/rfc6698

interface TlsaRecord {
    certAssociationData?: string;
    matchingType?: number;
    selector?: number;
    usage?: number;
}

Properties

certAssociationData?: string

This specifies the certificate association data to be matched.

matchingType?: number

The matching type specifies how the certificate association is presented.

selector?: number

The selector specifies which part of the TLS certificate presented by the server will be matched against the association data.

usage?: number

The usage specifies the provided association that will be used to match the certificate presented in the TLS handshake.