具体而言,如下所示:
<nwebsec>
<sessionSecurity xmlns="http://nwebsec.com/SessionSecurityConfig.xsd"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="NWebsecConfig/SessionSecurityConfig.xsd">
<sessionIDAuthentication enabled="true"
useMachineKey="false"
-----------------------> authenticationKey="64char hex string here"/>
</sessionSecurity>
</nwebsec>
我的问题是:
答案 0 :(得分:1)
authenticationKey
是使用machineKey
的替代方法,应该同样对待。即你应该为不同的环境使用不同的密钥,你也应该保密密钥。
如果您为自己的应用配置了machineKey
,建议您使用它。已添加authenticationKey
以支持无法从配置中读取machineKey
的情况。