package dns

  1. Overview
  2. Docs

Module Dns.RrsigSource

RRSIG

Resource record signatures, used by DNSSec.

Sourcetype t = {
  1. type_covered : int;
  2. algorithm : Dnskey.algorithm;
  3. label_count : int;
  4. original_ttl : int32;
  5. signature_expiration : Ptime.t;
  6. signature_inception : Ptime.t;
  7. key_tag : int;
  8. signer_name : [ `raw ] Domain_name.t;
  9. signature : Cstruct.t;
}

The type of a RRSIG.

Sourceval pp : t Fmt.t

pp ppf t pretty-prints the RRSIG.

Sourceval compare : t -> t -> int

compare a b compares the RRSIG a with b.