This repository was archived by the owner on Dec 24, 2020. It is now read-only.
This repository was archived by the owner on Dec 24, 2020. It is now read-only.
Consider aligning the ticket data format between the OWIN/Katana and ASP.NET 5 versions #188
Closed
Description
Because the two versions use different ticket formats and don't rely on the same data protection block, the tokens are not interoperable. We should determine ASAP if the formats should be re-aligned.
The ideal plan would be to use AspNetTicketSerializer
from the new Microsoft.Owin.Security.Cookies.Interop
package (https://github.com/aspnet/Security/blob/dev/src/Microsoft.Owin.Security.Cookies.Interop/AspNetTicketSerializer.cs) and the new data protection block.
Sadly, these options come with 2 downsides: they both require .NET 4.5.1 and the data protection block no longer uses web.config
to configure keys storage.