wdg-base32 0.1.1

The Base32 Data Encoding
Documentation
1
2
3
4
5
6
7
8
9
10
11
static ALPHABET32:&'static[char]=&[];

pub struct B32<T>(T);

pub trait B32Encode<I,O>{
    fn encode(data:I)->O;
}

pub trait B32Decode<I,O>{
    fn decode(data:I)->O;
}