I want to compare two Blob
s to see if there are changes between them.
One way of doing this is by calculating the hash of the blobs and then comparing them, e.g.:
hash(firstBlob) === hash(secondBlob)
How can I calculate the hash of a Blob and check against another hash to see if they have changed?