Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想用密码在服务器端加密一个字符串,并在客户端用相同的密码解密它。
如何解决这个问题?
您正在寻找一些加密功能。使用您想要的任何方法都可以完成这项工作,因为方法是标准的,并且它们都在大多数语言中都有实现。
以AES为例!
JS 实现:http ://code.google.com/p/crypto-js/
红宝石:https ://gist.github.com/1077760