You can search for identifiers within the package.
in-package search v0.2.0
type t
type hash =
| Hash of Bytes.t
val init : ?key:Bytes.t -> int -> t
init ?key size is a blake2b context for hashes of size size, using key if present.
init ?key size
size
key
val update : t -> Bytes.t -> unit
update t buf updates t with the data in buf.
update t buf
t
buf
val final : t -> hash
final t is the blake2b hash of all data updated in t so far.
final t
val direct : ?key:Bytes.t -> Bytes.t -> int -> hash
direct ?key inbuf len is the blake2b hash of length len, using key is present.
direct ?key inbuf len
len