Encoder/decoder utilities for some of the more popular string encoding utilities.
Supports the following schemes:
- Base64
- Base32
- URL
- Hex
Run make. Run 'enc -s ' to encode the text. Run 'dec -s ' to decode the text.
If no text is specified on the command line, standard input is used. This allows you to run piped encoding/decodings.
Example: enc -s b64 "Hello world!" | dec -s b64