hash/clear hash/copy hash/final hash/name hash/new hash/output-length hash/update
(hash/clear hash-obj)Reset the state of `hash` back to clean, as if no input has been supplied. Returns `hash-obj`.
(hash/copy hash-obj)Return a new hash object copied from `hash`. Returns new `hash-obj`.
(hash/new name)Creates a hash of the given name, e.g., "SHA-384". Returns `hash-obj`.
(hash/update hash-boj input)Add input to the hash computation. Returns `hash-obj`.