package cryptohash
Install
Dune Dependency
Authors
Maintainers
Sources
sha256=1b32321d72c7f56185f9dbed5c81a91e0b4a7cd7faeb755b31f0b3324bd552b1
md5=5eb9507779d265d32c61dc0d40e888c5
doc/cryptohash.md2/Cryptohash_md2/index.html
Module Cryptohash_md2
type buf =
(char, Bigarray.int8_unsigned_elt, Bigarray.c_layout) Bigarray.Array1.t
buffer type
val init : unit -> ctx
Create a new context
val string : string -> t
Return the digest of the given string.
Return the digest of the given buffer. All functions with parameters of type buf
may release the runtime lock, if the buffer is large enough.
val unsafe_update_substring : ctx -> string -> int -> int -> unit
Md2.unsafe_update_substring ctx s ~pos ~len updates the context with the substring of s starting at character number pos and containing len characters. Unsafe: No range checking!
val update_substring : ctx -> string -> int -> int -> unit
Md2.update_substring ctx s ofs len updates the context with the substring of s starting at character number ofs and containing len characters. Raise Invalid_argument
, if ofs and len do not designate a valid substring of s.
val update_string : ctx -> string -> unit
Md2.update_string ctx s updates the context with s.
val substring : string -> int -> int -> t
Md2.substring s ofs len returns the digest of the substring of s starting at character number ofs and containing len characters. Raise Invalid_argument
, if ofs and len do not designate a valid substring of s.
val channel : in_channel -> int -> t
If len is nonnegative, Md2.channel ic len reads len characters from channel ic and returns their digest, or raises End_of_file if end-of-file is reached before len characters are read. If len is negative, Md2.channel ic len reads all characters from ic until end-of-file is reached and return their digest.
val file : string -> t
Return the digest of the file whose name is given.
val file_fast : string -> t
Return the digest of the file whose name is given using fast C function. This function releases the OCaml runtime lock, so other OCaml threads can run in parallel.
val output : out_channel -> t -> unit
Write a digest on the given output channel.
val input : in_channel -> t
Read a digest from the given input channel.
val to_hex : t -> string
return a printable hexadecimal representation of the given digest
val from_hex : string -> t
reversal of to_hex. Raises Invalid_argument
, if the parameter not a valid hexstring