package key-parsers

  1. Overview
  2. Docs
type t =
  1. | Id of Id.t
  2. | Secret_key of Secret_key.t
  3. | Public_key of Public_key.t
  4. | Signature of Signature.t
  5. | Secret_subkey of Secret_key.t
  6. | Public_subkey of Public_key.t
  7. | Marker
  8. | Unknown
val compare : t -> t -> Ppx_deriving_runtime.int
val equal : t -> t -> Ppx_deriving_runtime.bool
val pp : Ppx_deriving_runtime.Format.formatter -> t -> Ppx_deriving_runtime.unit
val decode : packet_type -> Cstruct.t -> (t, string) Stdlib.result