I am interested in creating a small application for personal use that will encrypt and decrypt information on the client side using JavaScript. The encrypted information will be stored in the database on the server, but not in the decrypted version.
It doesn't have to be super-duper safe, but I would like to use the current continuous algorithm.
Ideally, I could do something like
var gibberish = encrypt(string, salt, key);
to generate a coded string and something like
var sensical = decrypt(gibberish, key);
to decode it later.
So far I have seen this: http://bitwiseshiftleft.imtqy.com/sjcl/
Any other libraries I should look at?
javascript encryption
jeremiahs Aug 16 '13 at 17:40 2013-08-16 17:40
source share