mte/unikernel/duniverse/ocaml-dns/tsig/dns_tsig.mli
2025-11-11 02:07:51 +01:00

58 lines
2.3 KiB
OCaml

(* (c) 2017, 2018 Hannes Mehnert, all rights reserved *)
open Dns
(** DNS TSIG signatures *)
(** As specified by {{:https://tools.ietf.org/html/rfc2845}RFC 2845} *)
val sign : Tsig_op.sign
(** [sign ~mac ~max_size name tsig ~key packet buffer] signs the given
[buffer] with the provided [key], its [name], the [tsig]. The [mac]
argument is expected when a reply to a signed DNS packet should be signed.
If signing fails, an error may be produced. The result is a buffer and a
mac. *)
val verify : Tsig_op.verify
(** [verify ~mac now packet name ~key tsig buffer] verifies the [buffer]
using the provided [tsig], [key] and [name].*)
type s = [ `Key_algorithm of Dnskey.t | `Tsig_creation | `Sign ]
(** The type for signing errors. *)
val pp_s : s Fmt.t
(** [pp_s ppf s] pretty-prints [s] on [ppf]. *)
val encode_and_sign : ?proto:proto -> ?mac:string -> Packet.t -> Ptime.t ->
Dns.Dnskey.t -> 'a Domain_name.t -> (string * string, s) result
(** [encode_and_sign ~proto ~mac t now dnskey name] signs and encodes the DNS
packet. If a reply to a request is signed, the [mac] argument should be the
message authentication code from the request (needed to sign the reply).
The returned value is the encoded byte buffer and the mac of the packet
(useful for passing into {!decode_and_verify} when receiving a reply to the
signed request). *)
type e = [
| `Decode of Packet.err
| `Unsigned of Packet.t
| `Crypto of Tsig_op.e
| `Invalid_key of [ `raw ] Domain_name.t * [ `raw ] Domain_name.t
]
(** The type for decode and verify errors. *)
val pp_e : e Fmt.t
(** [pp_e ppf e] prety-prints [e] on [ppf]. *)
val decode_and_verify : Ptime.t -> Dnskey.t -> 'a Domain_name.t ->
?mac:string -> string ->
(Packet.t * Tsig.t * string, e) result
(** [decode_and_verify now dnskey name ~mac buffer] decodes and verifies the
given buffer using the key material, resulting in a DNS packet, a signature,
and the [mac], or a failure. The optional [mac] argument should be provided
if an answer to a signed DNS packet is to be decoded. *)
(**/**)
val compute_tsig : 'a Domain_name.t -> Tsig.t -> key:string ->
string -> string
(** [compute_tsig name tsig ~key buffer] computes the mac over [buffer]
and [tsig], using the provided [key] and [name]. *)