Rivest cipher
Simple Rust module with Rivest Cipher implementation.
Implemented schemes
- RC2
- RC5 (RC5/8 RC5/16 RC5/32 RC5/64)
- RC6
Usage
Installation
cargo add rivest_cipher
Example
use rc5;
let key: = ;
let plaintext: = ;
let encryptor: = ;
let ciphertext: = encryptor.encrypt.unwrap;
assert_eq!;