Sha_512.State
Hash state.
type t
The type for hash state.
val make : unit -> t
make () is an initial hash state.
make ()
val update : t -> Bytesrw.Bytes.Slice.t -> unit
update state slice updates state with the bytes in the range of slice.
update state slice
state
slice
val copy : t -> t
copy state is a copy of state, operations on state do not affect the copy.
copy state