On Wed, Aug 21, 2013 at 3:56 PM, Aymeric Vitte <[email protected]> wrote: > Combination of the File API, indexedDB, etc (and future WebCrypto) is really > great, I did not expect to be stucked by something that looks trivial: > calculate the hash of a file while you are reading it.
Until we add API for incremental data, what you can do is to use Blob.slice() to read the blob in small parts. Not great, but at least it'll get you unstuck. / Jonas
