conv64
Easily (& blazingly fast) convert base 10 numbers to base 64.
IMPORTANT NOTE: This is base 64 as in the number base, if you're searching for base64 encryption, use this
Quickstart
# Cargo.toml
[]
= "*"
// main.rs
Uses
The main application for this is using it as an ID generator/shortener (for example, YouTube video IDs are base 64 encoded numbers).
Since its main use is for the web, the 2 extra characters (+ and /) are replaced with - and _ respectively, so it can be used in URLs without encoding.
License
This project is licensed under the MIT License.