BloombergLP::bslh::hashAppend

Combine the specified input into the state of the specified hashAlg.

Synopsis

Declared in <bslh_hash.h>

template<
    class HASH_ALGORITHM,
    size_t N>
void
hashAppend(
    HASH_ALGORITHM& hashAlg,
    char const(& input)[]);

Description

Passes the specified input into the specified hashAlg to be combined into the internal state of the algorithm which is used to produce the resulting hash value. Note that the entire char array will be hashed in only one call to hashAlg.

Parameters

NameDescription
hashAlghashing algorithm to update
inputcharacter array to incorporate into the hash