cryptotools 0.3.0

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

use cryptotools::encode_base64::*;

#[test]
fn test_encode_base64() {
    let encode = Base64Encode::encode("123456789");
    assert_eq!(encode, "MTIzNDU2Nzg5");
}