JavaScript crypto libraries?

What are some of the safe / reliable cryptographic libraries for JavaScript? For those who have used it, what is your opinion of them? Thanks.

+7
source share
1 answer

Google closure

Google's closing library used has been quite successful for a while

https://developers.google.com/closure/library/

Specific crypt documentation here

http://closure-library.googlecode.com/svn/docs/namespace_goog_crypt.html

phpjs.org

Sometimes for simpler tasks I also used standalone functions like md5 or sha1 from phpjs.org

crypto js

Although it was never used personally, I heard very good things about this library.

http://code.google.com/p/crypto-js/

+6
source

All Articles