7 implementations of ISecureDataFormat
Microsoft.AspNetCore.Authentication (1)
SecureDataFormat.cs (1)
12public class SecureDataFormat<TData> : ISecureDataFormat<TData>
Microsoft.AspNetCore.Authentication.Test (6)
GoogleTests.cs (1)
1244private class TestStateDataFormat : ISecureDataFormat<AuthenticationProperties>
OAuthTests.cs (1)
541private class TestStateDataFormat : ISecureDataFormat<AuthenticationProperties>
OpenIdConnect\OpenIdConnectAuthenticateTests.cs (1)
103private class TestStateDataFormat : ISecureDataFormat<AuthenticationProperties>
OpenIdConnect\OpenIdConnectEventTests.cs (1)
1317private class TestStateDataFormat : ISecureDataFormat<AuthenticationProperties>
OpenIdConnect\OpenIdConnectEventTests_Handler.cs (1)
1315private class TestStateDataFormat : ISecureDataFormat<AuthenticationProperties>
WsFederation\CustomStateDataFormat.cs (1)
9public class CustomStateDataFormat : ISecureDataFormat<AuthenticationProperties>
12 references to ISecureDataFormat
Microsoft.AspNetCore.Authentication (1)
SecureDataFormat.cs (1)
9/// An implementation for <see cref="ISecureDataFormat{TData}"/>.
Microsoft.AspNetCore.Authentication.BearerToken (4)
BearerTokenOptions.cs (4)
13private ISecureDataFormat<AuthenticationTicket>? _bearerTokenProtector; 14private ISecureDataFormat<AuthenticationTicket>? _refreshTokenProtector; 48public ISecureDataFormat<AuthenticationTicket> BearerTokenProtector 59public ISecureDataFormat<AuthenticationTicket> RefreshTokenProtector
Microsoft.AspNetCore.Authentication.Cookies (1)
CookieAuthenticationOptions.cs (1)
109public ISecureDataFormat<AuthenticationTicket> TicketDataFormat { get; set; } = default!;
Microsoft.AspNetCore.Authentication.OAuth (1)
OAuthOptions.cs (1)
99public ISecureDataFormat<AuthenticationProperties> StateDataFormat { get; set; } = default!;
Microsoft.AspNetCore.Authentication.OpenIdConnect (2)
OpenIdConnectOptions.cs (2)
263public ISecureDataFormat<AuthenticationProperties> StateDataFormat { get; set; } = default!; 268public ISecureDataFormat<string> StringDataFormat { get; set; } = default!;
Microsoft.AspNetCore.Authentication.Twitter (1)
TwitterOptions.cs (1)
68public ISecureDataFormat<RequestToken> StateDataFormat { get; set; } = default!;
Microsoft.AspNetCore.Authentication.WsFederation (1)
WsFederationOptions.cs (1)
132public ISecureDataFormat<AuthenticationProperties> StateDataFormat { get; set; } = default!;
Microsoft.AspNetCore.Identity (1)
IdentityApiEndpointRouteBuilderExtensions.cs (1)
126var refreshTokenProtector = bearerTokenOptions.Get(IdentityConstants.BearerScheme).RefreshTokenProtector;