1 implementation of Unprotect
Microsoft.AspNetCore.Authentication (1)
SecureDataFormat.cs (1)
50public TData? Unprotect(string? protectedText)
8 references to Unprotect
Microsoft.AspNetCore.Authentication.BearerToken (1)
BearerTokenHandler.cs (1)
43var ticket = Options.BearerTokenProtector.Unprotect(token);
Microsoft.AspNetCore.Authentication.OAuth (1)
OAuthHandler.cs (1)
69var properties = Options.StateDataFormat.Unprotect(state);
Microsoft.AspNetCore.Authentication.OpenIdConnect (3)
OpenIdConnectHandler.cs (3)
327properties = Options.StateDataFormat.Unprotect(message.State); 959properties = Options.StateDataFormat.Unprotect(message.State); 1193var 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);