vote up 0 vote down star

Is there any way to calculate the md5 hash of a file before the upload to the server using javascript?

flag

67% accept rate

7 Answers

vote up 4 vote down check

While there are JS implementations of the MD5 algorithm, it is not possible for javascript to read files on the filesystem.

link|flag
2  
Apart from the impossibility to get file system access in JS, I would not put any trust at all in a client-generated checksum. So generating the checksum on the server is mandatory in any case. – Tomalak Apr 20 at 14:05
It will be possible in FF3.6 ;) – powtac Oct 31 at 22:16
vote up 0 vote down

Take a look at this.

link|flag
That's just simple md5 hashing of a string, I wanted to know if that's possible with a file. Thanks – LuRsT Apr 20 at 13:37
File!? With JavaScript!? Forget about it. – Pablo Santa Cruz Apr 20 at 14:09
vote up 1 vote down

I don't think this is possible because JavaScript has limited filesystem access.

link|flag
vote up 1 vote down

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.

link|flag
vote up 1 vote down

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.

link|flag
vote up 0 vote down

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.

link|flag
vote up 0 vote down

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.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.