package key-parsers

  1. Overview
  2. Docs
module S2k : sig ... end
type t = {
  1. public_key : Public_key.t;
  2. s2k : S2k.t option;
  3. initial_vector : string option;
  4. private_key : Private_key_value.t option;
  5. checksum : string option;
  6. hash : string option;
}
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 : Cstruct.t -> (t, string) Stdlib.result