package cryptohash
Install
Dune Dependency
Authors
Maintainers
Sources
sha256=7eb37240eafb4ae6380e0d2fb517d3dc7e4a3a1a729f3309fba45c8f52e30519
md5=c51f3be13b42901b6627ff1238bf365f
doc/cryptohash.tiger/Cryptohash_tiger/index.html
Module Cryptohash_tiger
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
Tiger.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
Tiger.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
Tiger.update_string ctx s updates the context with s.
val substring : string -> int -> int -> t
Tiger.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, Tiger.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, Tiger.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