如何使用自定义加密配置 ASP.NET MembershipProvider?
我想将 System.Web.Security.Membership.HashAlgorithmType (或通过 web.config)设置为我创建的自定义加密类,在此函数中,我有加密和解密函数,我想映射属性值以使用此类。
我该怎么做呢?
附言。 我不介意更改加密类的结构,我的观点是使用自定义加密类。
提前致谢。
I want to set System.Web.Security.Membership.HashAlgorithmType (or thru web.config) to a custom Cryptography class I created, In this function I have Encrypt and Decrypt functions I wanna map the property value to use this class.
How do I do this?
PS. I don't mind changing the crypto class' struct, my point is using a custom crypto class.
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我将以下内容放入 MembershipProvider 实现中:
I placed the following into the MembershipProvider implementation: