Microsoft.IdentityModel.Tokens.Base64UrlEncoder
Encodes and Decodes strings as base64url encoding.
Decodes the specified base64url encoded string to UTF-8.
Converts the specified base64url encoded string to UTF-8 bytes.
Performs base64url encoding, which differs from regular base64 encoding as follows:
* Padding is skipped so the pad character '=' doesn't have to be percent encoded.
* The 62nd and 63rd regular base64 encoding characters ('+' and '/') are replaced with ('-' and '_').
This makes the encoding alphabet URL safe.
Converts a subset of an array of 8-bit unsigned integers to its equivalent string representation encoded with base64url digits.
Converts a subset of an array of 8-bit unsigned integers to its equivalent string representation encoded with base64url digits.
Parameters specify the subset as an offset in the input array and the number of elements in the array to convert.
Populates a Span<T> with the base64url encoded representation of a ReadOnlySpan<T> of bytes.