method Hash.prototype.digest
Jump to headingHash.prototype.digest(): Buffer
Calculates the digest of all of the data passed to be hashed (using the hash.update()
method).
If encoding
is provided a string will be returned; otherwise
a Buffer
is returned.
The Hash
object can not be used again after hash.digest()
method has been
called. Multiple calls will cause an error to be thrown.
Return Type Jump to heading
Buffer
Jump to headingHash.prototype.digest(encoding: BinaryToTextEncoding): string
Parameters Jump to heading
Jump to headingencoding: BinaryToTextEncoding
Return Type Jump to heading
string