Skip to content

Towmeykaw/dotnet-base64

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

dotnet-base64

This dotnet global tool can base64 encode/decode strings. It can be installed with the following command

dotnet tool install -g dotnet-base64

It is invoked with the following command

base64 stringToEncode

base64 --decode stringToDecode

It also works with pipes in Powershell.

echo stringToEncode | base64

The primary reason I made this tool is to be able to easily decode Kubernetes secrets like the following.

kubectl get secret default-token -o jsonpath="{.data.token}" | base64 --decode

About

A dotnet global tool for base64 encode/decode

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages