Digestif_pbkdf
module type S = sig ... end
RFC 2898 specifies two password-based key derivation functions (PBKDF1 and PBKDF2), which are abstracted over a specific hash/pseudorandom function.
module Make (H : Digestif.S) : S
Given a Hash/pseudorandom function, get the PBKDF