Why do I see the same hash value generated when I use different viewstate encryption algorithms. I added below lines to web.config file
pages viewstateEncryptionMode = "Always" enableViewStateMac = "true" ... / ">
machineKey validationKey = "AutoGenerate, IsolateApps" decryptionKey = "AutoGenerate, IsolateApps" validation = "AES" decryption = "Auto" / ">
The compilation debug = "false" ...> is also set.
No matter what I use (AES, MD5, SHA1, 3DES), it generates the same hash. I'm missing something.
Please let me know.
-Thank
source
share