Update the hash with data
Symbol
CryptoHasher.update
Referenced types
class CryptoHasher
Hardware-accelerated cryptographic hash functions
Used for crypto.createHash()
- readonly static algorithms: SupportedCryptoAlgorithms[]
List of supported hash algorithms
These are hardware accelerated with BoringSSL
Perform a deep copy of the hasher
Finalize the hash. Resets the CryptoHasher so it can be reused.
@param encodingDigestEncoding
to return the hash in. If none is provided, it will return aUint8Array
.Finalize the hash and return a
Buffer
Finalize the hash
@param hashIntoTypedArray
to write the hash into. Faster than creating a new one each time- inputEncoding?: Encoding
Update the hash with data
- ): Buffer;
Run the hash over the given data
@param inputstring
,Uint8Array
, orArrayBuffer
to hash.Uint8Array
orArrayBuffer
is faster.hashInto: TypedArray): TypedArray;Run the hash over the given data
@param inputstring
,Uint8Array
, orArrayBuffer
to hash.Uint8Array
orArrayBuffer
is faster.@param hashIntoTypedArray
to write the hash into. Faster than creating a new one each time): string;Run the hash over the given data
@param inputstring
,Uint8Array
, orArrayBuffer
to hash.Uint8Array
orArrayBuffer
is faster.@param encodingDigestEncoding
to return the hash in