package key-parsers

  1. Overview
  2. Docs
module Value : sig ... end
type t = {
  1. version : int;
  2. creation_time : int32;
  3. validity_period : int32 option;
  4. algo : Algo.Public.t;
  5. public_key : Value.t;
}
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 -> (Cstruct.t * t, string) Stdlib.result