package key-parsers

  1. Overview
  2. Docs
type s2k_type =
  1. | Simple
  2. | Salted
  3. | Iterated_salted
  4. | Unknown
val name : s2k_type -> string
type t =
  1. | Simple of Algo.Hash.t
  2. | Salted of Algo.Hash.t * int64
  3. | Iterated_salted of Algo.Hash.t * int64 * int
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