Dns.Nsec3
Nsec3
Hashed authenticated denial of existence resource record, used by DNSSec.
type f = [
| `Opt_out
| `Unknown of int
]
The type of flags.
val flags_of_int : int -> f option
flags_of_int v is f.
flags_of_int v
f
type t = {
flags : f option;
iterations : int;
salt : string;
next_owner_hashed : string;
types : Bit_map.t;
}
The type of Nsec3.
val pp : t Fmt.t
pp ppf t pretty-prints the Nsec3.
pp ppf t
val compare : t -> t -> int
compare a b compares the Nsec3 a with b.
compare a b
a
b