wdg-base32 0.3.5

The Base32 Data Encoding
Documentation
1
2
3
4
5
impl B32Encode<u64,String> for B32<String>{
    fn encode(data:u64)->String{
        return b32_encode(&data as *const u8,8,ALPHABET32_ENCODE.as_ptr());
    }
}