我有一个具有此配置的 machine.config:
<system.web>
<machineKey compatibilityMode="Framework20SP2" validationKey="123" decryptionKey="456" validation="SHA1" decryption="3DES"/>
以及具有此属性的 web.config
<system.web>
<machineKey decryption="SHA1"/>
最终配置是否结合了两者?
<machineKey compatibilityMode="Framework20SP2" validationKey="123" decryptionKey="456" validation="SHA1" decryption="SHA1"/>
或者如果我重新定义了 machineKey 它将被完全覆盖?
<machineKey decryption="SHA1"/>