使用 C# 的 Rijndal 算法
我想要 Rijndael 算法的代码来加密任何给定的文本以将其存储在数据库中,我还想知道如何反转加密方法,即:解密加密的文本以使用它。
I want the code of Rijndael algorithm to encrypt any given text to store it in a database, I also want to know how to reverse the encryption method, ie: decrypt the encrypted text to use it.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
已经有一个现有的 .NET Framework 实现。
There's an existing .NET Framework implementation already.
此资源有您需要的内容:
http://www.obviex.com/samples/Encryption.aspx
This resource has what you need:
http://www.obviex.com/samples/Encryption.aspx
您应该看看 这个出色的解决方案,作者是 马克·布里廷汉姆。该类包括加密和解密方法。
You should take a look at this great solution by Mark Brittingham. This class both includes encryption and decryption methods.