Skip to content
This repository was archived by the owner on Sep 23, 2022. It is now read-only.
/ b64decode Public archive

A base64 decoding CLI that decodes standard encoding, url-safe encoding, with or without padding.

Notifications You must be signed in to change notification settings

csstaub/b64decode

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

A base64 decoding CLI that decodes standard encoding, url-safe encoding, with or without padding. If you're dealing with a lot of url-safe base64-encoded data, or data that sometimes doesn't have the padding, this will be more robust than base64 --decode.

Install

go get github.com/csstaub/b64decode

Examples

With padding

❯❯❯ echo 'SGVsbG8gV29ybGQhCg==' | b64decode
Hello World!

Without padding

❯❯❯ echo 'SGVsbG8gV29ybGQhCg' | b64decode
Hello World!

Understands standard and url-safe encoding

❯❯❯ echo '8J-Ygwo=' | b64decode
😃

About

A base64 decoding CLI that decodes standard encoding, url-safe encoding, with or without padding.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages