Forms authentication cookies compatibility issue

.net如何使用老的加密算法
.net如何使用遗留的加密算法

Form Authentication Ticket compatibility issue with MS10-070


FormsAuthentication.SetAuthCookie(user.Name, false);

.net的这行代码加密后的cookie,java里面不能正常解密。

在web.conf里面加入下面的代码就可以了:

    <appSettings>
<add key="aspnet:UseLegacyEncryption" value="true" />
    </appSettings>

你可能感兴趣的:(java,.net,解密出错)