I need to encrypt a file before posting it. In WebKit, I know that with FileWriter, I could just rewrite the file then post it, but my solution needs to be crossbrowser compatible.
I could also take all my blobs and pass them to a flash uploader, but I would create another problem.
Is there a method in javascript to post an ArrayBuffer or a byte array as a file?
Right now, I think about Ajax, but could it handle 200MB+ files?
[Edit]
Interesting: How to convert dataURL to file object in javascript?
It seems possible to post Blob via Ajax.