diff --git a/src/Microsoft.AspNet.Identity.AspNetCoreCompat/CookieInterop.cs b/src/Microsoft.AspNet.Identity.AspNetCoreCompat/CookieInterop.cs index 1e32ce03cb..593c50ee77 100644 --- a/src/Microsoft.AspNet.Identity.AspNetCoreCompat/CookieInterop.cs +++ b/src/Microsoft.AspNet.Identity.AspNetCoreCompat/CookieInterop.cs @@ -13,7 +13,7 @@ namespace Owin public static ISecureDataFormat CreateSharedDataFormat(DirectoryInfo keyDirectory, string authenticationType) { var dataProtector = DataProtectionProvider.Create(keyDirectory) - .CreateProtector("Microsoft.AspNet.Authentication.Cookies.CookieAuthenticationMiddleware", // full name of the ASP.NET 5 type + .CreateProtector("Microsoft.AspNetCore.Authentication.Cookies.CookieAuthenticationMiddleware", // full name of the ASP.NET 5 type authenticationType, "v2"); return new AspNetTicketDataFormat(new DataProtectorShim(dataProtector)); }