package key-parsers

  1. Overview
  2. Docs
type other_prime = {
  1. r : Z.t;
  2. d : Z.t;
  3. t : Z.t;
}
val compare_other_prime : other_prime -> other_prime -> Ppx_deriving_runtime.int
val equal_other_prime : other_prime -> other_prime -> Ppx_deriving_runtime.bool
val pp_other_prime : Ppx_deriving_runtime.Format.formatter -> other_prime -> Ppx_deriving_runtime.unit
val show_other_prime : other_prime -> Ppx_deriving_runtime.string
type t = {
  1. n : Z.t;
  2. e : Z.t;
  3. d : Z.t;
  4. p : Z.t;
  5. q : Z.t;
  6. dp : Z.t;
  7. dq : Z.t;
  8. qinv : Z.t;
  9. other_primes : other_prime list;
}
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 other_prime_grammar : other_prime Asn.t
val grammar : t Asn.t
val encode : t -> Cstruct.t
val decode : Cstruct.t -> (t, string) Result.result