FormsAuthentication 中哪里使用了 machineKey/validationKey?
配置用于加密、解密和表单验证数据和视图状态数据验证以及进程外会话状态识别的算法和密钥
具体来说,FormsAuthentication 中的哪些方法使用validationKey 和encryptionKey 值?
Configures algorithms and keys to use for encryption, decryption, and validation of forms-authentication data and view-state data, and for out-of-process session state identification
Specifically which methods in FormsAuthentication make use of validationKey and encryptionKey values?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
FormsAuthentication 中使用
validationKey
和encryptionKey
的方法是 FormsAuthentication.Encrypt 和 FormsAuthentication.Decrypt 方法。The methods in FormsAuthentication that use
validationKey
andencryptionKey
are the FormsAuthentication.Encrypt and FormsAuthentication.Decrypt methods.