I'm trying to find a way to calculate the hash of large files in javascript without having to load the whole file in a FileReader. Is there a way to calculate the sha1 of a file by streaming it in javascript?
I'm looking at sha.js but I'm not sure how it could be done in JavaScript client side.