package zxcvbn

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type kind =
  1. | Non_match
  2. | Brute_match
  3. | Dictionnary_match
  4. | Dict_leet_match
  5. | User_match
  6. | User_leet_match
  7. | Repeats_match
  8. | Sequence_match
  9. | Spatial_match
  10. | Date_match
  11. | Year_match
  12. | Unknown_match of int
val equal_kind : kind -> kind -> Ppx_deriving_runtime.bool
val compare_kind : kind -> kind -> Ppx_deriving_runtime.int
val pp_kind : Ppx_deriving_runtime.Format.formatter -> kind -> Ppx_deriving_runtime.unit
type t = {
  1. beginning : int;
  2. length : int;
  3. entropy : float;
  4. kind : kind;
  5. multipart : bool;
  6. multipart_entropy : float;
}
val equal : t -> t -> Ppx_deriving_runtime.bool
val compare : t -> t -> Ppx_deriving_runtime.int
val pp : Ppx_deriving_runtime.Format.formatter -> t -> Ppx_deriving_runtime.unit