We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Base64Url support should be a built-in feature of PowerShell in my mind, but I could settle for importing a module that does it well.
There are a lot of blog posts showing tips on how to do it without importing a new module, and they all look like this:
It works, but it is horribly inefficient. I would rather have a Convert::ToBase64UrlString() function but we can't have everything 🤷
Base64Url is very common because of the popularity of JWTs, and everything that needs to be Base64 and URL-safe at the same time.
The text was updated successfully, but these errors were encountered:
This seems like it should be a switch to the ConvertTo/From-Base64 cmdlet
ConvertTo/From-Base64
Sorry, something went wrong.
No branches or pull requests
Base64Url support should be a built-in feature of PowerShell in my mind, but I could settle for importing a module that does it well.
There are a lot of blog posts showing tips on how to do it without importing a new module, and they all look like this:
It works, but it is horribly inefficient. I would rather have a Convert::ToBase64UrlString() function but we can't have everything 🤷
Base64Url is very common because of the popularity of JWTs, and everything that needs to be Base64 and URL-safe at the same time.
The text was updated successfully, but these errors were encountered: