Contents Hashing
module type S = sig ... endSignature for hash values.
module type TYPED = sig ... endSignature for typed hashes, where hash directly takes a value as argument and incremental hashing is not possible.
module Make : functor (H : Digestif.S) -> sig ... endDigestif hashes.
module Make_BLAKE2B : functor (D : sig ... end) -> sig ... endmodule Make_BLAKE2S : functor (D : sig ... end) -> sig ... endmodule SHA1 : sig ... endmodule RMD160 : sig ... endmodule SHA224 : sig ... endmodule SHA256 : sig ... endmodule SHA384 : sig ... endmodule SHA512 : sig ... endmodule BLAKE2B : sig ... endmodule BLAKE2S : sig ... end