Is there any way to calculate the md5 hash of a file before the upload to the server using javascript?
|
While there are JS implementations of the MD5 algorithm, older browsers are generally unable to read files from the local filesystem. I wrote that in 2009. So what about new browsers? With a browser that supports the FileAPI, you *can * read the contents of a file - the user has to have selected it, either with an
|
|||||||||||||||||||||
|
|
You can't get access to the actual file that is being transferred from javascript, but if you wrote your own upload software, in something like Flash, or an applet, assuming permissions were set, you could then do the hash and send the data. UPDATE: If you use Firfox 3.6beta it appears there is a way to select files from the user's harddrive: https://developer.mozilla.org/en/Using_files_from_web_applications |
||||
|
|
|
You need to to use FileAPI. It is available in the latest FF & Chrome, but not IE9. Grab any md5 JS implementation suggested above. I've tried this and abandoned it because JS was too slow (minutes on large image files). Might revisit it if someone rewrites MD5 using typed arrays. Code would look something like this:
|
|||||||||
|
|
I've made a library that implements incremental md5 in order to hash large files efficiently. Basically you read a file in chunks (to keep memory low) and hash it incrementally. You got basic usage and examples in the readme. Be aware that you need HTML5 FileAPI, so be sure to check for it. There is a full example in the test folder. |
||||
|
|
|
There is a couple scripts out there on the internet to create an MD5 Hash. The one from webtoolkit is good, http://www.webtoolkit.info/javascript-md5.html Although, I don't believe it will have access to the local filesystem as that access is limited. |
|||
|
|
Which is useless in most cases. You want the MD5 computed at client side, so that you can compare it with the code recomputed at server side and conclude the upload went wrong if they differ. I have needed to do that in applications working with large files of scientific data, where receiving uncorrupted files were key. My cases was simple, cause users had the MD5 already computed from their data analysis tools, so I just needed to ask it to them with a text field. |
|||
|
|
|
Also, you should never trust the client. You'll just have to redo the hash once it's uploaded. |
|||
|
|
|
Take a look at this. |
|||||||
|
|
I don't think this is possible because JavaScript has limited filesystem access. |
|||
|
|
|
To get the hash of files, there are a lot of options. Normally the problem is that it's really slow to get the hash of big files. I created a little library that get the hash of files, with the 64kb of the start of the file and the 64kb of the end of it. Live example: http://marcu87.github.com/hashme/ and library: https://github.com/marcu87/hashme |
|||
|
|
|
I don't believe there is a way in javascript to access the contents of a file upload. So you therefore cannot look at the file contents to generate an MD5 sum. You can however send the file to the server, which can then send an MD5 sum back or send the file contents back .. but that's a lot of work and probably not worthwhile for your purposes. |
|||
|
|
|
Without a plugin you can't access that binary data. You should look into using a Flash-based upload tool. I have colleagues who have used SWFUpload, but I don't know how to get access to the file content itself. You might have to alter the SWF itself to allow this. |
|||
|
|
|
Well its possible to read files with HTML5 File API (see the Blob interface). Not tested but you could do it maybe. |
|||
|
|
|
With current HTML5 it should be possible to calculate the md5 hash of a binary file, But I think the step before that would be to convert the banary data BlobBuilder to a String, I am trying to do this step: but have not been successful. Here is the code I tried: Converting a BlobBuilder to string, in HTML5 Javascript |
|||
|
|
