edgeport - v1.0.6
    Preparing search index...

    Interface DnskeyRecord

    A DNSKEY record (DNSSEC, RFC 4034).

    interface DnskeyRecord {
        algorithm: number;
        flags: number;
        protocol: number;
        publicKey: string;
    }
    Index
    algorithm: number

    The public-key algorithm.

    flags: number

    The flags field (256=ZSK, 257=KSK).

    protocol: number

    The protocol field (always 3).

    publicKey: string

    The public key as a base64 string.