54

I've uploaded my website to a webhosting and this error came up;
'Error occurred during a cryptographic operation.'.

I've done some research and it seems that the formauthenticated cookie is bound to the MachineKey (which differs when using webhost).


I've found a method that should fix this problem but the error remains.

CODE:

/// <summary>
    /// This method removes a cookie if the machine key is different than the one that saved the cookie;
    /// </summary>
    protected void Application_Error(object sender, EventArgs e)
    {
        var error = Server.GetLastError();
        var cryptoEx = error as CryptographicException;
        if (cryptoEx != null)
        {
            FederatedAuthentication.WSFederationAuthenticationModule.SignOut();
            Global.Cookies.FormAuthenticated Cookie = new Global.Cookies.FormAuthenticated();
            Cookie.Delete();
            Server.ClearError();
        }
    }


STACKTRACE:

[CryptographicException: Error occurred during a cryptographic operation.]
   System.Web.Security.Cryptography.HomogenizingCryptoServiceWrapper.HomogenizeErrors(Func`2 func, Byte[] input) +115
   System.Web.Security.Cryptography.HomogenizingCryptoServiceWrapper.Unprotect(Byte[] protectedData) +59
   System.Web.Security.FormsAuthentication.Decrypt(String encryptedTicket) +9824926
   Archive_Template.Main.resolveLoginUser(String sessionKey) in f:\Archive_Template\Archive_Template\Main.aspx.cs:481
   Archive_Template.Main.OnPreInit(EventArgs e) in f:\Archive_Template\Archive_Template\Main.aspx.cs:52
   System.Web.UI.Page.PerformPreInit() +31
   System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +335
jgauffin
  • 99,844
  • 45
  • 235
  • 372
Jeroen Vorsselman
  • 803
  • 1
  • 9
  • 19
  • 2
    If you're using server-side ADAL libraries from Microsoft, see @FRoZeN's answer (delete the cached tokens from you SQL 'UserTokenCaches' table) – bkwdesign Oct 05 '17 at 13:02
  • If you're doing client side scripting / SPA development, see @BaqerNaqvi's answer - clearing your browser's localStorage where ADAL.js is storing and caching it's API access tokens should help resolve things – bkwdesign Oct 05 '17 at 13:05

14 Answers14

37

I faced the same problem. I just cleared all of browser's cookies and cache data and it got fixed.I hope it will work for you too.

Baqer Naqvi
  • 6,011
  • 3
  • 50
  • 68
36

For anyone who hasn't solved their problem, I was missing the "machineKey" entry for encrypt/decrypt in my web.config

Grace
  • 2,548
  • 5
  • 26
  • 23
  • 3
    Can you expand on this answer? What particular config did you use? Can this be configured with iis? – AntonJ Aug 03 '16 at 13:03
  • You can add something like this inside the system.web section in the WebConfig. However, that does not fix the issue permanently. check the comments in http://stackoverflow.com/questions/14119965/federated-authentication-on-azure and for the IIS https://blogs.msdn.microsoft.com/amb/2012/07/31/easiest-way-to-generate-machinekey/ – Juan Acosta Apr 28 '17 at 00:29
  • I had this issue moving a site into a web farm with two web servers. This answer, using Juan Acosta's link, plus clearing the cached data and cookies for this site only (I did this using the browser developer tools), as suggested by andreasnico's answer, solved the problem. Thank you. – Michael Russ Jan 21 '20 at 20:15
20

If you are using forms auth. you can signout when you catch the exception and allow your users to login and create a valid cookie

catch (CryptographicException cex)
{
    FormsAuthentication.SignOut();
}
Ozan BAYRAM
  • 2,780
  • 1
  • 28
  • 35
9

I just had this aswell, i deleted the UserTokenCaches table entries from the database.

Jim Wolff
  • 5,052
  • 5
  • 34
  • 44
  • Yes, for users of the ADAL libraries from Microsoft.. delete your tokens cached in the database.. just like @FRoZeN says here – bkwdesign Oct 05 '17 at 13:00
8

This is due to the machine key is missing, which is used as a symmetric key to do the encryption and decryption.

To set the machine in the IIS;

Go to your application -> Machine Keys -> Generate Keys

Alex
  • 11,115
  • 12
  • 51
  • 64
Ghaleb Badran
  • 91
  • 1
  • 2
8

I ran into this problem when I tried to take a forms authentication cookie created by an ASP.NET 2.0 app and decrypt it inside an .NET4.5 Web API project. The solution was to add an attribute called "compatibilityMode" to the "machineKey" node inside my web api's web.config file:

<machineKey 
...
compatibilityMode="Framework20SP2"/>

Documentation: https://msdn.microsoft.com/en-us/library/system.web.configuration.machinekeysection.compatibilitymode.aspx

And from the doc, here are the allowed values for that attribute:

  • Framework20SP1. This value specifies that ASP.NET uses encryption methods that were available in versions of ASP.NET earlier than 2.0 SP2. Use this value for all servers in a web farm if any server has a version of the .NET Framework earlier than 2.0 SP2. This is the default value unless the application Web.config file has the targetFramework attribute of the httpRuntime element set to "4.5".
  • Framework20SP2. This value specifies that ASP.NET uses upgraded encryption methods that were introduced in the .NET Framework 2.0 SP2. Use this value for all servers in a web farm if all servers have the .NET Framework 2.0 SP2 or later but at least one does not have the .NET Framework 4.5.
  • Framework45. Cryptographic enhancements for ASP.NET 4.5 are in effect. This is the default value if the application Web.config file has the targetFramework attribute of the httpRuntime element set to "4.5".
jwill212
  • 320
  • 4
  • 3
  • 1
    This, coupled with the solution to this: https://stackoverflow.com/questions/16660900/webforms-unobtrusivevalidationmode-requires-a-scriptresourcemapping-for-jquery/16705149#16705149, solved my problem. Thanks! – RossD Feb 15 '18 at 18:11
7

Another option is to clear the cookies from browser setting and this allows new cookies to get stored.

Manoj Patil
  • 970
  • 1
  • 10
  • 19
6

I have also experienced this when developing a new solution and running the website on localhost. Setting the machinekey made no difference, but simply deleting all the cookies for localhost solved the problem.

andreasnico
  • 1,478
  • 14
  • 23
5
       protected void Application_Error(object sender_, CommandEventArgs e_)
    {
        Exception exception = Server.GetLastError();
        if(exception is CryptographicException)
        {
            FormsAuthentication.SignOut();
        }
    }

in your Global.asax.cs, from Catching errors in Global.asax, as long as you use Forms authentication (login/password). Worked for me.

barbara.post
  • 1,581
  • 16
  • 27
2

If you receive this error when implementing single sign on (as described here http://www.alexboyang.com/2014/05/28/sso-for-asp-net-mvc4-and-mvc5-web-apps-shared-the-same-domain/), make sure to have the same target framework across all projects. I had one project with .NET 4.0 and the other on .NET 4.5.2.

Changing the first one to 4.5.2 fixed the issue for me.

SzilardD
  • 1,611
  • 2
  • 22
  • 40
2

I was getting crypto errors when validating the AntiForgery token.

I believe it was because I had just made some security control configuration changes to my server to configure application recycling to recycle when Virtual Memory limits hit 1,000,000 Kilobytes.

This was definitely way too little for virtual memory recycling. Private memory usage can be set to 1,000,000 KB, but virtual memory should be given a lot more space.

I noticed my application was recycling much too often.

I increased the Virtual Memory limit to 10,000,000 KB and those errors went away. I believe the application pool may have been recycling as I was filling out the form.

AdamantineWolverine
  • 2,131
  • 1
  • 17
  • 14
1

For me, It was the <httpRuntime targetFramework="4.7.2"/> causing the compatibilty issues.My application was not using targetFramework="4.7.2" parameter in <httpRuntime targetFramework="4.7.2"/> in the web.config while the webApi was using <httpRuntime targetFramework="4.7.2"/> .Removing the paramater from the WebApi or adding the paramater in the Application did the trick.

mrinali
  • 140
  • 10
0

I had the same issue: MVC 5 ASP.Net Web Application .net Framework 4.6.1

Solution:

  1. Go to App_Data folder (Solution explorer)
  2. Double click in your NAME.mdf (this action open Server Explorer Tab)
  3. Right click on UserTokenCaches table and view Show Table Data
  4. Delete the row
  5. Run app again and everything will be ok
0

I had this problem when somebody decided to change the encryption algorithm to DES (a very old standard of encryption). Moving it back to AES (a more modern encryption standard) cleared the error.

Might have been something to do with Group Policy disabling DES...

The encryption algorithm is hidden in the Machine Key section (with IIS). There's probably a way of setting it in the web.config also.

thab
  • 666
  • 1
  • 6
  • 14