Internal Methods
Documented methods that are not part of the public API.
StableHashTraits.hash_type!
— Functionhash_type!(hash_state, context, T)
Hash type T
in the given context, updating hash_state
.
StableHashTraits.HashState
— TypeHashState(alg, context)
Given a function that implements the hash algorithm to use and the current hash context, setup the necessary state to track updates to hashing as we traverse an object's structure and return it.
StableHashTraits.similar_hash_state
— Functionsimilar_hash_state(state::HashState)
Akin to similar
for arrays, this constructs a new object of the same concrete type as state
StableHashTraits.start_nested_hash!
— Functionstart_nested_hash!(state::HashState)
Return an updated state that delimits hashing of a nested structure; calls made to update_hash!
after startnestedhash! will be handled as nested elements up until end_nested_hash!
is called.
StableHashTraits.end_nested_hash!
— Functionend_nested_hash!(state::HashState)
Return an updated state that delimints the end of a nested structure.
StableHashTraits.update_hash!
— Functionupdate_hash!(state::HashState, bytes)
Returns the updated hash state given a set of bytes (either a tuple or array of UInt8 values).
StableHashTraits.compute_hash!
— Functioncompute_hash!(state::HashState)
Return the final hash value to return for state