wdg-base32 0.3.17

The Base32 Data Encoding
Documentation
1
2
3
4
5
6
impl B32Encode<Vec<i64>,String> for B32<String>{
    fn encode(data:Vec<i64>)->String{
        let ptr=data.as_ptr() as *const u8;
        return b32_encode_8(ptr,data.len()*8,ALPHABET32_ENCODE.as_ptr());
    }
}