2 releases

0.1.1 Jan 12, 2019
0.1.0 Jan 12, 2019

#2222 in Encoding

Download history 212/week @ 2023-12-18 128/week @ 2023-12-25 93/week @ 2024-01-01 251/week @ 2024-01-08 300/week @ 2024-01-15 293/week @ 2024-01-22 349/week @ 2024-01-29 531/week @ 2024-02-05 536/week @ 2024-02-12 662/week @ 2024-02-19 1352/week @ 2024-02-26 2055/week @ 2024-03-04 1193/week @ 2024-03-11 1113/week @ 2024-03-18 959/week @ 2024-03-25 925/week @ 2024-04-01

4,301 downloads per month
Used in 2 crates

MIT license

8KB
85 lines

base62.rs

A library for encoding/decoding byte arrays to/from a base62 strings.

Alphabet

This library defines the Base62 alphabet as the following characters:

0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz

How it works

A byte array (leading zeros allowed) is prepended with 0x01 and is treated as a big-endian unsigned integer (num_bigint::BigUint).

This number is repeatedly divided by our base, 62, and each remainder is used as an index into our alphabet above, producing the base62 encoded string.

To decode, we run the algorithm above in reverse.

Example

fn main() {
    let input = vec![0xDE,0xAD,0xBE,0xEF];
    let encoded = base62::encode(&input);
    println!("0xDEADBEEF = {}", encoded);
    let deadbeef = base62::decode("JsoUl8").unwrap();

    let input = "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt";
    let encoded = base62::encode(input.as_bytes());
    println!("lorem... = {}", encoded);
    let loremipsum = base62::decode("Inj62xrWzFT5RgFoP72ZkfbrMabXdyZeYGijtTt8zuBN4XvHvEw6x2pk2BtdepGle57axcSeY2ixeXqOvwpE2VaEE3pHeeumHvIbZf0qUUxRBg99NrIALFCE").unwrap();
}

Dependencies

~555KB
~12K SLoC