package tezos-context
- Overview
- No Docs
You can search for identifiers within the package.
in-package search v0.2.0
Install
dune-project
Dependency
Authors
Maintainers
Sources
sha256=ad9e08819871c75ba6f4530b125f7d157799398e4d77a1e6bfea9d91ff37ff55
sha512=c5dc4d40cc09bc6980fbbdb5c2e105bf4252cf9cfcb2b49660b0ebe4dc789f6709ec3b3bf2f87d81580d3eed9521eeb1c960f24d9b14eb0285aaba1f84d10a9b
doc/tezos-context.encoding/Tezos_context_encoding/Context/Hash/index.html
Module Context.HashSource
include Irmin.Hash.S
The type for digest hashes.
Compute a deterministic store key from a sequence of strings.
short_hash h is a small hash of h, to be used for instance as the `hash` function of an OCaml Hashtbl.
hash_size is the size of hash results, in bytes.
unsafe_of_raw_string b is the hash consisting of the raw sequence of bytes b.
Warning: this function cannot guarantee that the supplied byte string is a valid output of the hash process, so should only be used on strings that are known to have been built with to_raw_string.
short_hash_substring t off computes the short-hash of the raw hash data contained in t at offset off. It has behaviour equivalent to:
Bigstringaf.substring t ~off ~len:hash_size
|> unsafe_of_raw_string
|> short_hashbut may be more efficient due to not needing to allocate an intermediate string.
Value Types
t is the value type for t.