Legend:
Library
Module
Module type
Parameter
Class
Class type
Library
Module
Module type
Parameter
Class
Class type
val init : ?key:Bigstring.t -> int -> t
init ?key size
is a blake2b context for hashes of size size
, using key
if present.
val update : t -> Bigstring.t -> unit
update t buf
updates t
with the data in buf
.
val direct : ?key:Bigstring.t -> Bigstring.t -> int -> hash
direct ?key inbuf len
is the blake2b hash of length len
, using key
is present.