Sql 中的加密和 asp.net 中的解密(对于查询字符串)可能吗?
我有一个 sql 作业,每天晚上向所有用户发送电子邮件。它的页脚带有 Unsubscibe 链接,可打开 asp.net 页面。作为查询字符串,我想将加密的 EmailID 添加到链接中。这样我就可以解密并使用它来更新数据库。
如何在sql中使用加密并在asp.net中解密?有可能还是有其他办法?
非常感谢大家, 雷莫
I have a sql job that sends email to all users everynight. It has a footer with Unsubscibe link which opens the asp.net page. As a querystring, i want to add encrypted EmailID to the link. so i can decrypt and use it to update the database.
How can i use encryption in sql and decrypt in asp.net? Is it possible or is there any other way?
Thanks a lot guys,
Remo
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 EncryptByKey 和 DecryptByKey sql 函数 (sql-server 2008)。在 ASP 中,您始终可以将查询发送到数据库以进行解密。
You could use EncryptByKey and DecryptByKey sql functions (sql-server 2008). In ASP you can always send query to db for decrypting purposes.