wdg-base32 0.2.2

The Base32 Data Encoding
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
include!("./use.rs");
include!("./macro.rs");
include!("./data.rs");

#[test]
fn encode() {
    for t in TEST {
        test_encode!(String,String::from(t.0),String::from(t.1));
    }
}

#[test]
fn decode() {
    for t in TEST {
        test_decode!(String,String::from(t.1),String::from(t.0));
    }
}