cryptotools 0.3.0

cryptotools is a cryptography library
Documentation
1
2
3
4
5
6
7
8
9
#[cfg(test)]

use cryptotools::decode_base64::*;

#[test]
fn test_decode_base64() {
    let decode = Base64Decode::decode("MTIzNDU2Nzg5");
    assert_eq!(decode, "123456789");
}