package tezos-protocol-013-PtJakart
Tezos Protocol Implementation - Random number generation
This is not expected to be a good cryptographic random number generator. In particular this is supposed to be used in situations where the seed is a globally known information.
The only expected property is: It should be difficult to find a seed such that the generated sequence is a given one.
Random Generation
take_int32 s bound
generates the next random value as a bounded int32
take_int64 s bound
generates the next random value as a bounded int64
Entropy
val make_nonce :
bytes ->
nonce Tezos_protocol_environment_013_PtJakart.Error_monad.tzresult
Use a byte sequence as a nonce
val hash : nonce -> Nonce_hash.t
Compute the hash of a nonce
val check_hash : nonce -> Nonce_hash.t -> bool
check_hash nonce hash
is true if the nonce correspond to the hash
val nonce_hash_key_part : Nonce_hash.t -> string list -> string list
For using nonce hashes as keys in the hierarchical database
Predefined seeds
val empty : seed
val initial_seeds : ?initial_seed:State_hash.t -> int -> seed list
initial_seeds n
generates the first n
seeds for which there are no nonces. The first seed is a constant value. The kth seed is the hash of seed (k-1) concatenated with a constant. If an initial_seed
is provided, the first seed is created using it as the first one.
Predefined nonce
val initial_nonce_0 : nonce
val initial_nonce_hash_0 : Nonce_hash.t
Serializers
val nonce_encoding :
nonce Tezos_protocol_environment_013_PtJakart.Data_encoding.t
val seed_encoding :
seed Tezos_protocol_environment_013_PtJakart.Data_encoding.t