This binary is a wrapper around the data-encoding
[library].
You can run make install
to install the binary from the [github] repository.
By default, it will be installed as ~/.cargo/bin/data-encoding
. You can also
run cargo install data-encoding-bin
to install the latest version published on
crates.io
. This second alternative does not require to clone the repository.
You can run data-encoding --help
(assuming ~/.cargo/bin
is in your PATH
environment variable) to see the usage:
```
Usage: data-encoding --mode=
Options:
-m, --mode
Examples: # Encode using the RFC4648 base64 encoding data-encoding -mencode -b64 # without padding data-encoding -mencode -b64 -p= # with padding
# Encode using the MIME base64 encoding
data-encoding -mencode -b64 -p= -w76 -s$'\r\n'
# Show base information for the permissive hexadecimal encoding
data-encoding --mode=describe --base=hex
# Decode using the DNSCurve base32 encoding
data-encoding -mdecode \
--symbols=0123456789bcdfghjklmnpqrstuvwxyz \
--translate=BCDFGHJKLMNPQRSTUVWXYZbcdfghjklmnpqrstuvwxyz \
--least_significant_bit_first
```
The performance of this binary is similar or faster than the GNU base64
program (see how to run the benchmarks on [github]).