I am looking for a javascript library with I can encrypt client side and decrypt server side using C#.
Does such a library exist? Are there examples howto encrypt client side and howto decrypt in C# server side?
edit - extra explanation
On a site with low treshold the requirement is http. Some data (litte) will be send to the server. Idea is that the user give some data (also a key - will not be sent), data will be encrypt and send to the server (key is also known on server side). Data is not real sensitive, preference is not to send it as plain text ...
I tried http://code.google.com/p/crypto-js/ AES. But I can't figure out how that data is encypted (client side, utf 8 or ..., etc.). If I encrypt some data client side (with same iv and private key etc) and do the same in C# I get different strings.