edgeport - v1.0.6
    Preparing search index...

    Interface RrsigRecord

    A DNSSEC signature record (RFC 4034).

    interface RrsigRecord {
        algorithm: number;
        expiration: number;
        inception: number;
        keyTag: number;
        labels: number;
        originalTtl: number;
        signature: string;
        signerName: string;
        typeCovered: number;
    }
    Index
    algorithm: number

    The signing algorithm.

    expiration: number

    Signature expiration, seconds since the Unix epoch.

    inception: number

    Signature inception, seconds since the Unix epoch.

    keyTag: number

    The key tag of the signing DNSKEY.

    labels: number

    The number of labels in the signed name.

    originalTtl: number

    The original TTL of the covered RR set.

    signature: string

    The signature as a base64 string.

    signerName: string

    The signer's domain name.

    typeCovered: number

    The TYPE this signature covers.