asp.net-mvc – SessionSecurityTokenHandler尝试使用DPAPI解密RSA加密coo
|
我已经阅读过MSDN论坛,Dominic Baier的博客,以及其他来源,DPAPI将无法在Azure中开箱即用,并且在任何类型的Web场景中处理联合身份验证的一种方法是替换DPAPI转换使用可在整个服务器场中使用的私钥的服务器,例如使用X509证书的RSA加密.我在Azure MVC应用程序中采用了这种方法,并将SessionSecurityTokenHandler配置为: FederatedAuthentication.ServiceConfigurationCreated += (sender,args) =>
{
var sessionTransforms = new List<CookieTransform>(new CookieTransform[]
{
new DeflateCookieTransform(),new RsaEncryptionCookieTransform(args.ServiceConfiguration.ServiceCertificate),new RsaSignatureCookieTransform(args.ServiceConfiguration.ServiceCertificate)
});
var sessionHandler = new SessionSecurityTokenHandler(sessionTransforms.AsReadOnly());
args.ServiceConfiguration.SecurityTokenHandlers.AddOrReplace(sessionHandler);
};
使用此配置,我们能够从身份提供商处接收令牌,并发出使用这些转换加密的安全cookie.在Azure模拟器中运行,一切都按预期工作.但是,在Azure环境中,我们间歇性地在浏览器中看到以下错误: Key not valid for use in specified state. Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code. Exception Details: System.Security.Cryptography.CryptographicException: Key not valid for use in specified state. Source Error: An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below. Stack Trace: [CryptographicException: Key not valid for use in specified state. ] System.Security.Cryptography.ProtectedData.Unprotect(Byte[] encryptedData,Byte[] optionalEntropy,DataProtectionScope scope) +577 Microsoft.IdentityModel.Web.ProtectedDataCookieTransform.Decode(Byte[] encoded) +80 [InvalidOperationException: ID1073: A CryptographicException occurred when attempting to decrypt the cookie using the ProtectedData API (see inner exception for details). If you are using IIS 7.5,this could be due to the loadUserProfile setting on the Application Pool being set to false. ] Microsoft.IdentityModel.Web.ProtectedDataCookieTransform.Decode(Byte[] encoded) +433 Microsoft.IdentityModel.Tokens.SessionSecurityTokenHandler.ApplyTransforms(Byte[] cookie,Boolean outbound) +189 Microsoft.IdentityModel.Tokens.SessionSecurityTokenHandler.ReadToken(XmlReader reader,SecurityTokenResolver tokenResolver) +862 Microsoft.IdentityModel.Tokens.SessionSecurityTokenHandler.ReadToken(Byte[] token,SecurityTokenResolver tokenResolver) +109 Microsoft.IdentityModel.Web.SessionAuthenticationModule.ReadSessionTokenFromCookie(Byte[] sessionCookie) +356 Microsoft.IdentityModel.Web.SessionAuthenticationModule.TryReadSessionTokenFromCookie(SessionSecurityToken& sessionToken) +123 Microsoft.IdentityModel.Web.SessionAuthenticationModule.OnAuthenticateRequest(Object sender,EventArgs eventArgs) +61 System.Web.SyncEventExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() +80 System.Web.HttpApplication.ExecuteStep(IExecutionStep step,Boolean& completedSynchronously) +270 这似乎表明SessionSecurityTokenHandler正在尝试使用DPAPI解密cookie,但为什么呢?我没有配置它使用上面的RSA吗? 解决方法请注意,您现在可以使用MachineKeySessionSecurityTokenHandler在Web场中对会话令牌进行签名和加密.
要使用它,您需要删除默认的SessionSecurityTokenHandler并在Web.config中添加MachineKeySessionSecurityTokenHandler: <system.identityModel>
<identityConfiguration>
<securityTokenHandlers>
<remove type="System.IdentityModel.Tokens.SessionSecurityTokenHandler,System.IdentityModel,Version=4.0.0.0,Culture=neutral,PublicKeyToken=b77a5c561934e089" />
<add type="System.IdentityModel.Services.Tokens.MachineKeySessionSecurityTokenHandler,System.IdentityModel.Services,PublicKeyToken=b77a5c561934e089" />
</securityTokenHandlers>
</identityConfiguration>
</system.identityModel>
MachineKeySessionSecurityTokenHandler使用在Web.config中配置的机器密钥,因此您还需要添加它: <system.web> <machineKey validationKey="..." decryptionKey="..." validation="SHA1" decryption="AES" /> </system.web> 请参阅BrainThud的这个问题 (编辑:安卓应用网) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |
- ASP.NET – 上传大文件时如何显示错误页面(超过最大请求长度
- asp.net – 使用GhostScript将PDF转换为服务器上的图像集合
- asp.net-mvc – MVC应用程序中的随机数生成
- views – 我应该在asp.net MVC6中为我的所有图像添加asp-ap
- asp.net-mvc – IIS劫持CORS Preflight OPTIONS请求
- asp.net – 实体框架与存储过程
- .net – 如何从ModelState键中删除前缀?
- asp.net中利用Jquery+Ajax+Json实现无刷新分页的实例代码
- 选择ASP.NET MVC菜单项
- asp.net-mvc – 如何在MVC 5中使用用户身份中的角色
- asp-classic – 如何在VBScript中逐行读取CSV文件
- asp.net-mvc-4 – 使用基于声明的授权
- ASP.NET MVC – MapRoute与routes.Add(和404s)
- entity-framework – 将DbContext注入FluentVali
- asp.net-mvc-3 – 在html标签中添加html输入
- 服务器端ASP.Net Ajax异常处理
- asp.net-mvc – 什么时候应该在ASP.NET MVC中使用
- asp.net-mvc – 获取错误“视图at’/ Views / Pa
- ASP.Net文本框从右到左
- asp.net-mvc – 如何在ASP.NET MVC中添加路由到动
