├── .gitignore ├── AspNetTicketBridge.sln ├── LICENSE ├── README.md └── src ├── AspNet4InteropSerializer.cs ├── AspNet4TicketDataFormat.cs ├── AspNetTicketBridge.Strong.csproj ├── AspNetTicketBridge.csproj ├── AspNetTicketBridge.xml ├── AuthenticationTicketConverter.cs ├── MachineKey.cs ├── MachineKeyDataProtector.cs ├── MachineKeyTicketProtector.cs ├── MachineKeyTicketUnprotector.cs ├── OwinAuthenticationTicket.cs └── OwinTicketSerializer.cs /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmarlow/AspNetTicketBridge/HEAD/.gitignore -------------------------------------------------------------------------------- /AspNetTicketBridge.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmarlow/AspNetTicketBridge/HEAD/AspNetTicketBridge.sln -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmarlow/AspNetTicketBridge/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmarlow/AspNetTicketBridge/HEAD/README.md -------------------------------------------------------------------------------- /src/AspNet4InteropSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmarlow/AspNetTicketBridge/HEAD/src/AspNet4InteropSerializer.cs -------------------------------------------------------------------------------- /src/AspNet4TicketDataFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmarlow/AspNetTicketBridge/HEAD/src/AspNet4TicketDataFormat.cs -------------------------------------------------------------------------------- /src/AspNetTicketBridge.Strong.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmarlow/AspNetTicketBridge/HEAD/src/AspNetTicketBridge.Strong.csproj -------------------------------------------------------------------------------- /src/AspNetTicketBridge.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmarlow/AspNetTicketBridge/HEAD/src/AspNetTicketBridge.csproj -------------------------------------------------------------------------------- /src/AspNetTicketBridge.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmarlow/AspNetTicketBridge/HEAD/src/AspNetTicketBridge.xml -------------------------------------------------------------------------------- /src/AuthenticationTicketConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmarlow/AspNetTicketBridge/HEAD/src/AuthenticationTicketConverter.cs -------------------------------------------------------------------------------- /src/MachineKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmarlow/AspNetTicketBridge/HEAD/src/MachineKey.cs -------------------------------------------------------------------------------- /src/MachineKeyDataProtector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmarlow/AspNetTicketBridge/HEAD/src/MachineKeyDataProtector.cs -------------------------------------------------------------------------------- /src/MachineKeyTicketProtector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmarlow/AspNetTicketBridge/HEAD/src/MachineKeyTicketProtector.cs -------------------------------------------------------------------------------- /src/MachineKeyTicketUnprotector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmarlow/AspNetTicketBridge/HEAD/src/MachineKeyTicketUnprotector.cs -------------------------------------------------------------------------------- /src/OwinAuthenticationTicket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmarlow/AspNetTicketBridge/HEAD/src/OwinAuthenticationTicket.cs -------------------------------------------------------------------------------- /src/OwinTicketSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmarlow/AspNetTicketBridge/HEAD/src/OwinTicketSerializer.cs --------------------------------------------------------------------------------