JavaScript crypto libraries?

cryptography, javascript

Solution

Google Closure

Used Google's closure library quite successfully 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

Occasionally for simpler tasks I have also used self-contained functions such as md5 or sha1 from phpjs.org

crypto-js

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

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

Problem

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

Original source