package dns

  1. Overview
  2. Docs

Module Dns.Nsec3Source

Nsec3

Hashed authenticated denial of existence resource record, used by DNSSec.

Sourcetype f = [
  1. | `Opt_out
  2. | `Unknown of int
]

The type of flags.

Sourceval flags_of_int : int -> f option

flags_of_int v is f.

Sourcetype t = {
  1. flags : f option;
  2. iterations : int;
  3. salt : string;
  4. next_owner_hashed : string;
  5. types : Bit_map.t;
}

The type of Nsec3.

Sourceval pp : t Fmt.t

pp ppf t pretty-prints the Nsec3.

Sourceval compare : t -> t -> int

compare a b compares the Nsec3 a with b.

OCaml

Innovation. Community. Security.