8 references to Base64UrlTextEncoder
Microsoft.AspNetCore.Authentication (3)
RemoteAuthenticationHandler.cs (1)
232var correlationId = Base64UrlTextEncoder.Encode(bytes);
SecureDataFormat.cs (2)
46return Base64UrlTextEncoder.Encode(protectedData); 65var protectedData = Base64UrlTextEncoder.Decode(protectedText);
Microsoft.AspNetCore.Authentication.MicrosoftAccount (1)
MicrosoftAccountHandler.cs (1)
83var codeVerifier = Base64UrlTextEncoder.Encode(bytes);
Microsoft.AspNetCore.Authentication.OAuth (1)
OAuthHandler.cs (1)
317var codeVerifier = Base64UrlTextEncoder.Encode(bytes);
Microsoft.AspNetCore.Authentication.OpenIdConnect (1)
OpenIdConnectHandler.cs (1)
415var codeVerifier = Base64UrlTextEncoder.Encode(bytes);
Microsoft.AspNetCore.Authentication.Test (2)
Base64UrlTextEncoderTests.cs (2)
18string text = Base64UrlTextEncoder.Encode(data); 19byte[] result = Base64UrlTextEncoder.Decode(text);