First, I have read this article.
Second, I read this post on StackOverflow, and though it was relatively recent, most of the promising links are dead.
Third, someone recommended Crypto-JS to me, but that appears to be Node based, and therefore server-side.
Which has brought me to taking a look at the Stanford Javascript Crypto Library, which looks pretty good, except I am not in any way a cryptographer and am therefore unqualified at evaluating it.
I'm basically looking for an easy to implement client-side encryption library. It would be delivered over SSL, and it's main purpose is simply to encrypt data before it reaches the server, rather than upon arrival. It's just for a pet project/proof of concept, but I'd like to do things as close to correct as I can.
With all that said, is there such thing as trusted/easy-to-implement client side AES encryption, either as a jQuery Plugin (doubtful, the only one I could find provides RC4 encryption) or else plain old Javascript? Or is this a futile idea?