#base64 #encoding #padding #decoding

app base64-lt

A base64 (with padding) string encoding/decoding utility

6 stable releases

1.0.5 Aug 13, 2021
1.0.4 Aug 7, 2020
1.0.3 Jul 30, 2020
1.0.1 Jun 14, 2020

#584 in Encoding

Download history 12/week @ 2023-02-06 19/week @ 2023-02-13 6/week @ 2023-02-20 13/week @ 2023-03-20 27/week @ 2023-04-10 1/week @ 2023-05-01 20/week @ 2023-05-08 16/week @ 2023-05-15 27/week @ 2023-05-22

64 downloads per month

MIT license

4KB
54 lines

base64-lt

Current Crates.io Version Downloads badge

A base64 (with padding) string encoding/decoding utility.

You can use it in two ways:

  • Interactive mode : you run it, type your text, and press enter
  • Non-interactive mode : you echo your text and pipe it to base64-lt.

The -d commutator is for decoding. Tested on MacOS / Linux / Windows.

Examples:

base64-lt
Test
VGVzdA==
base64-lt -d
VGVzdA==
Test
echo "VGVzdA==" | base64-lt -d
Test

License: MIT

Dependencies

~9KB