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 other_prime_to_yojson : other_prime -> Yojson.Safe.t
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 to_yojson : t -> Yojson.Safe.t
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
OCaml

Innovation. Community. Security.