Module Digestif.RMD160Source

RMD160 hash algorithm.

Sourceval digest_size : int

Size of hash results, in bytes.

Sourcetype ctx
Sourcetype hmac
Sourcetype t
Sourceval empty : ctx

An empty hash context.

Sourceval init : unit -> ctx

Create a new hash state.

Sourceval feed_bytes : ctx -> ?off:int -> ?len:int -> Bytes.t -> ctx

feed_bytes msg t adds informations in msg to t. feed is analogous to appending: feed (feed t msg1) msg2 = feed t (append msg1 msg2)

Sourceval feed_string : ctx -> ?off:int -> ?len:int -> String.t -> ctx

Same as feed_bytes but for String.t.

Sourceval feed_bigstring : ctx -> ?off:int -> ?len:int -> bigstring -> ctx

Same as feed_bytes but for bigstring.

Sourceval feedi_bytes : ctx -> Bytes.t iter -> ctx

feedi_bytes t iter = let r = ref t in iter (fun msg -> r := feed !r msg); !r

Sourceval feedi_string : ctx -> String.t iter -> ctx

Same as feed_bytes but for String.t.

Sourceval feedi_bigstring : ctx -> bigstring iter -> ctx

Same as feed_bytes but for bigstring.

Sourceval get : ctx -> t

get t is the digest corresponding to t.

Sourceval hmac_init : key:string -> hmac

Create a new hmac state.

Sourceval hmac_feed_bytes : hmac -> ?off:int -> ?len:int -> Bytes.t -> hmac

hmac_feed_bytes msg t adds informations in msg to t. hmac_feed is analogous to appending: hmac_feed (hmac_feed t msg1) msg2 = hmac_feed t (append msg1 msg2)

Sourceval hmac_feed_string : hmac -> ?off:int -> ?len:int -> String.t -> hmac

Same as hmac_feed_bytes but for String.t.

Sourceval hmac_feed_bigstring : hmac -> ?off:int -> ?len:int -> bigstring -> hmac

Same as hmac_feed_bytes but for bigstring.

Sourceval hmac_feedi_bytes : hmac -> Bytes.t iter -> hmac

hmac_feedi_bytes t iter = let r = ref t in iter (fun msg -> r := hmac_feed !r msg); !r

Sourceval hmac_feedi_string : hmac -> String.t iter -> hmac

Same as hmac_feedi_bytes but for String.t.

Sourceval hmac_feedi_bigstring : hmac -> bigstring iter -> hmac

Same as hmac_feedi_bytes but for bigstring.

Sourceval hmac_get : hmac -> t

hmac_get t is the hmac corresponding to t.

Sourceval digest_bytes : ?off:int -> ?len:int -> Bytes.t -> t

digest_bytes msg is the digest of msg.

digest_bytes msg = get (feed_bytes empty msg).

Sourceval digest_string : ?off:int -> ?len:int -> String.t -> t

Same as digest_bytes but for a String.t.

Sourceval digest_bigstring : ?off:int -> ?len:int -> bigstring -> t

Same as digest_bytes but for a bigstring.

Sourceval digesti_bytes : Bytes.t iter -> t

digesti_bytes iter = feedi_bytes empty iter |> get.

Sourceval digesti_string : String.t iter -> t

Same as digesti_bytes but for String.t.

Sourceval digesti_bigstring : bigstring iter -> t

Same as digesti_bigstring but for bigstring.

Sourceval digestv_bytes : Bytes.t list -> t

Specialization of digesti_bytes with a list of Bytes.t (see iter).

Sourceval digestv_string : String.t list -> t

Same as digestv_bytes but for String.t.

Sourceval digestv_bigstring : bigstring list -> t

Same as digestv_bytes but for bigstring.

Sourceval hmac_bytes : key:string -> ?off:int -> ?len:int -> Bytes.t -> t

hmac_bytes ~key bytes is the authentication code for Bytes.t under the secret key, generated using the standard HMAC construction over this hash algorithm.

Sourceval hmac_string : key:string -> ?off:int -> ?len:int -> String.t -> t

Same as hmac_bytes but for String.t.

Sourceval hmac_bigstring : key:string -> ?off:int -> ?len:int -> bigstring -> t

Same as hmac_bytes but for bigstring.

Sourceval hmaci_bytes : key:string -> Bytes.t iter -> t

Authentication code under the secret key over a collection of Bytes.t.

Sourceval hmaci_string : key:string -> String.t iter -> t

Same as hmaci_bytes but for String.t.

Sourceval hmaci_bigstring : key:string -> bigstring iter -> t

Same as hmaci_bytes but for bigstring.

Sourceval hmacv_bytes : key:string -> Bytes.t list -> t

Specialization of hmaci_bytes with a list of Bytes.t (see iter).

Sourceval hmacv_string : key:string -> String.t list -> t

Same as hmacv_bytes but for String.t.

Sourceval hmacv_bigstring : key:string -> bigstring list -> t

Same as hmacv_bigstring but for bigstring.

val unsafe_compare : t compare

unsafe_compare function returns 0 on equality and a negative/positive int depending on the difference (like String.compare). This is usually OK, but this is not constant time, so in some cases it could leak some information.

val equal : t equal

The equal (constant-time) function for t.

val pp : t pp

Pretty-printer of t.

val of_hex : string -> t

of_hex tries to parse an hexadecimal representation of t. of_hex raises an invalid_argument when input is malformed. We take only firsts digest_size hexadecimal values and ignore rest of input. If it has not enough hexadecimal values, trailing values of the output hash are zero (\x00),

val of_hex_opt : string -> t option

of_hex tries to parse an hexadecimal representation of t. of_hex returns None when input is malformed. We take only first digest_size hexadecimal values and ignore rest of input. If it has not enough hexadecimal values, trailing values of the output hash are zero (\x00).

val consistent_of_hex : string -> t

consistent_of_hex tries to parse an hexadecimal representation of t. consistent_of_hex raises an invalid_argument when input is malformed. However, instead of_hex, consistent_of_hex expects exactly {!digest_size} * 2 hexadecimal values (but continues to ignore whitespaces).

val consistent_of_hex_opt : string -> t option

consistent_of_hex_opt tries to parse an hexadecimal representation of t. consistent_of_hex returns None when input is malformed. However, instead of_hex, consistent_of_hex expects exactly {!digest_size} * 2 hexadecimal values (but continues to ignore whitespaces).

val to_hex : t -> string

to_hex makes a hex-decimal representation of t.

val of_raw_string : string -> t

of_raw_string s see s as a hash. Useful when reading serialized hashes.

val of_raw_string_opt : string -> t option

of_raw_string_opt s see s as a hash. Useful when reading serialized hashes. Returns None if s is not the digest_size bytes long.

val to_raw_string : t -> string

to_raw_string s is (s :> string).

Sourceval get_into_bytes : ctx -> ?off:int -> bytes -> unit

get_into_bytes ctx ?off buf writes the result into the given buf at off (defaults to 0).

It's equivalent to:

  let get_into_bytes ctx ?(off = 0) buf =
    let t = get ctx in
    let str = to_raw_string t in
    Bytes.blit_string str 0 buf off digest_size

except get_into_bytes does not allocate an intermediate string.