package sha
Page
Library
Module
Module type
Parameter
Class
Class type
Source
Module Sha1
SHA1 OCaml binding
type buf =
(char, Bigarray.int8_unsigned_elt, Bigarray.c_layout) Bigarray.Array1.tbuffer type
val zero : tThe zero digest
val init : unit -> ctxCreate a new context
val unsafe_update_substring : ctx -> string -> int -> int -> unitSha1.unsafe_update_substring ctx s ofs len updates the context with the substring of s starting at character number ofs and containing len characters. Unsafe: No range checking!
val update_substring : ctx -> string -> int -> int -> unitSha1.update_substring ctx s ofs len updates the context with the substring of s starting at character number ofs and containing len characters.
val update_string : ctx -> string -> unitSha1.update_string ctx s updates the context with s.
Sha1.update_buffer ctx a updates the context with a. Runs parallel to other threads if any exist.
val string : string -> tReturn the digest of the given string.
val substring : string -> int -> int -> tSha1.substring s ofs len returns the digest of the substring of s starting at character number ofs and containing len characters.
val channel : in_channel -> int -> tIf len is nonnegative, Sha1.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, Sha1.channel ic len reads all characters from ic until end-of-file is reached and return their digest.
val file : string -> tReturn the digest of the file whose name is given.
val file_fast : string -> tReturn the digest of the file whose name is given using fast C function
val output : out_channel -> t -> unitWrite a digest on the given output channel.
val input : in_channel -> tRead a digest from the given input channel.
val to_bin : t -> stringreturn a binary representation of the given digest
val to_hex : t -> stringreturn a printable hexadecimal representation of the given digest