[#BloombergLP-bslh-hashAppend-0f6] = xref:BloombergLP.adoc[BloombergLP]::xref:BloombergLP/bslh.adoc[bslh]::hashAppend :relfileprefix: ../../ :mrdocs: 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`. Also note that this `hashAppend` exists because some platforms don't recognize that adding a const qualifier is a better match for arrays than decaying to a pointer and using the `hashAppend` function for pointers. == Synopsis Declared in `<bslh_hash.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template< class HASH_ALGORITHM, size_t N> void hashAppend( HASH_ALGORITHM& hashAlg, char(& input)[]); ---- [.small]#Created with https://www.mrdocs.com[MrDocs]#