Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

performance problem after adding machinekey in web.config

Does adding a machinekey in the system.web of your web.config cause any performance problems?

I added something like this to my web.config:

<system.web>
    <machineKey validationKey="aaa"
    decryptionKey="bbb" validation="SHA1" />
</system.web>

and now it seems to run quite a bit slower. I am using firebug to see how fast the page is loading.

I ended up with this problem after this issue

Note: this is not the actual machine key I am using. I have a proper machine key.

like image 874
codette Avatar asked Apr 17 '26 13:04

codette


2 Answers

Create a proper machine key and see if that works better:

machineKey generator

like image 124
Guffa Avatar answered Apr 19 '26 17:04

Guffa


The answer is no, it will not cause a performance problem.

I found out my problem was elsewhere

like image 41
codette Avatar answered Apr 19 '26 17:04

codette