2 types derived from SecureDataFormat
Microsoft.AspNetCore.Authentication (2)
PropertiesDataFormat.cs (1)
12public class PropertiesDataFormat : SecureDataFormat<AuthenticationProperties>
TicketDataFormat.cs (1)
12public class TicketDataFormat : SecureDataFormat<AuthenticationTicket>
7 instantiations of SecureDataFormat
Microsoft.AspNetCore.Authentication.OpenIdConnect (1)
OpenIdConnectPostConfigureOptions.cs (1)
60options.StringDataFormat = new SecureDataFormat<string>(new StringSerializer(), dataProtector);
Microsoft.AspNetCore.Authentication.Test (5)
SecureDataFormatTests.cs (3)
26var secureDataFormat = new SecureDataFormat<string>(new StringSerializer(), prototector); 39var secureDataFormat = new SecureDataFormat<string>(new StringSerializer(), prototector); 53var secureDataFormat = new SecureDataFormat<string>(new StringSerializer(), prototector);
TwitterTests.cs (2)
386var stateFormat = new SecureDataFormat<RequestToken>(new RequestTokenSerializer(), new EphemeralDataProtectionProvider(NullLoggerFactory.Instance).CreateProtector("TwitterTest")); 455var stateFormat = new SecureDataFormat<RequestToken>(new RequestTokenSerializer(), new EphemeralDataProtectionProvider(NullLoggerFactory.Instance).CreateProtector("TwitterTest"));
Microsoft.AspNetCore.Authentication.Twitter (1)
TwitterPostConfigureOptions.cs (1)
41options.StateDataFormat = new SecureDataFormat<RequestToken>(
8 references to SecureDataFormat
Microsoft.AspNetCore.Authentication (3)
PropertiesDataFormat.cs (1)
9/// A <see cref="SecureDataFormat{TData}"/> instance to secure
SecureDataFormat.cs (1)
18/// Initializes a new instance of <see cref="SecureDataFormat{TData}"/>.
TicketDataFormat.cs (1)
9/// A <see cref="SecureDataFormat{TData}"/> instance to secure
Microsoft.AspNetCore.Authentication.Test (5)
SecureDataFormatTests.cs (3)
26var secureDataFormat = new SecureDataFormat<string>(new StringSerializer(), prototector); 39var secureDataFormat = new SecureDataFormat<string>(new StringSerializer(), prototector); 53var secureDataFormat = new SecureDataFormat<string>(new StringSerializer(), prototector);
TwitterTests.cs (2)
386var stateFormat = new SecureDataFormat<RequestToken>(new RequestTokenSerializer(), new EphemeralDataProtectionProvider(NullLoggerFactory.Instance).CreateProtector("TwitterTest")); 455var stateFormat = new SecureDataFormat<RequestToken>(new RequestTokenSerializer(), new EphemeralDataProtectionProvider(NullLoggerFactory.Instance).CreateProtector("TwitterTest"));