Is There A Working Md5 Plugin Or Equivalent Encryption Plugin For Jquery 1.3.2?
Solution 1:
Why are you looking for a jQuery plugin? There are multiple implementations of MD5 and SHA1 available in JavaScript that turn any string into a hash string and that can easily be used with jQuery.
Here is the first Google result for "JavaScript sha1":
http://www.webtoolkit.info/javascript-sha1.html
Solution 2:
I highly recommend you read "Enough With The Rainbow Tables: What You Need To Know About Secure Password Schemes" by Thomas Ptacek. Here's the link to the wayback machine (if markdown will stop eating it):
The first thing that jumps out as applicable to your scenario: md5
is horribly broken.
There are other goodies in there, and I can't do the source material justice, so please read the whole thing.
UPDATE: Googling around seems to indicate it's possible to tie in HTTP Authentication to your CouchDB application using Apache. I'd recommend using that over rolling your own authentication protocol that relies on client-side hashing of the password.
Solution 3:
If you want MD5 rather than SHA1, this one works pretty well:
Post a Comment for "Is There A Working Md5 Plugin Or Equivalent Encryption Plugin For Jquery 1.3.2?"