7 implementations of Unprotect
Microsoft.AspNetCore.Authentication (1)
SecureDataFormat.cs (1)
50public TData? Unprotect(string? protectedText)
Microsoft.AspNetCore.Authentication.Test (6)
GoogleTests.cs (1)
1258public AuthenticationProperties Unprotect(string protectedText)
OAuthTests.cs (1)
555public AuthenticationProperties Unprotect(string protectedText)
OpenIdConnect\OpenIdConnectAuthenticateTests.cs (1)
117public AuthenticationProperties Unprotect(string protectedText)
OpenIdConnect\OpenIdConnectEventTests.cs (1)
1331public AuthenticationProperties Unprotect(string protectedText)
OpenIdConnect\OpenIdConnectEventTests_Handler.cs (1)
1329public AuthenticationProperties Unprotect(string protectedText)
WsFederation\CustomStateDataFormat.cs (1)
27public AuthenticationProperties Unprotect(string state)
7 references to Unprotect
Microsoft.AspNetCore.Authentication.OAuth (1)
OAuthHandler.cs (1)
69var properties = Options.StateDataFormat.Unprotect(state);
Microsoft.AspNetCore.Authentication.OpenIdConnect (3)
OpenIdConnectHandler.cs (3)
322properties = Options.StateDataFormat.Unprotect(message.State); 957properties = Options.StateDataFormat.Unprotect(message.State); 1190var nonceDecodedValue = Options.StringDataFormat.Unprotect(nonceKey.Substring(Options.NonceCookie.Name.Length, nonceKey.Length - Options.NonceCookie.Name.Length));
Microsoft.AspNetCore.Authentication.Twitter (1)
TwitterHandler.cs (1)
63var requestToken = Options.StateDataFormat.Unprotect(protectedRequestToken);
Microsoft.AspNetCore.Authentication.WsFederation (1)
WsFederationHandler.cs (1)
185properties = Options.StateDataFormat.Unprotect(state);
Microsoft.AspNetCore.Identity (1)
IdentityApiEndpointRouteBuilderExtensions.cs (1)
127var refreshTicket = refreshTokenProtector.Unprotect(refreshRequest.RefreshToken);