Internal Methods

Documented methods that are not part of the public API.

StableHashTraits.HashStateType
HashState(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.

source
StableHashTraits.start_nested_hash!Function
start_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.

source
StableHashTraits.update_hash!Function
update_hash!(state::HashState, bytes)

Returns the updated hash state given a set of bytes (either a tuple or array of UInt8 values).

source