Dac_plugin_registration.Make
module Mapper : sig ... end
val encoding :
Mavryk_dac_lib.Dac_plugin.hash Mavryk_base.TzPervasives.Data_encoding.t
The encoding of reveal hashes.
val equal :
Mavryk_dac_lib.Dac_plugin.hash ->
Mavryk_dac_lib.Dac_plugin.hash ->
bool
equal h1 h2
determines if h1
and h2
are the same hash.
val hash_string :
scheme:Mavryk_dac_lib.Dac_plugin.supported_hashes ->
?key:string ->
string list ->
Mavryk_dac_lib.Dac_plugin.hash
hash_string ~scheme ?key strings
hashes strings
using the supported hashing scheme
given in input.
val hash_bytes :
scheme:Mavryk_dac_lib.Dac_plugin.supported_hashes ->
?key:bytes ->
bytes list ->
Mavryk_dac_lib.Dac_plugin.hash
hash_bytes ~scheme ?key strings
hashes bytes
using the supported hashing scheme
given in input.
val scheme_of_hash :
Mavryk_dac_lib.Dac_plugin.hash ->
Mavryk_dac_lib.Dac_plugin.supported_hashes
scheme_of_hash
hash returns the supported hashing scheme that was used to obtain hash
.
val of_hex : string -> Mavryk_dac_lib.Dac_plugin.hash option
of_hex hex
decodes a hex into hash.
val to_hex : Mavryk_dac_lib.Dac_plugin.hash -> string
to_hex hash
encodes hash into hex.
val size : scheme:Mavryk_dac_lib.Dac_plugin.supported_hashes -> int
size ~scheme
returns the size of reveal hashes using the scheme
specified in input.