Simple Rust module with Rivest Cipher implementation.
cargo add rivest_cipher
```rust use rivest_cipher::schemes::rc5;
let key: [u8; 64] = { ... }; let plaintext: [u8; 16] = { ... };
let encryptor: Rc5
asserteq!(plaintext.asslice(), encryptor.decrypt(&ciphertext).unwrap().as_slice()); ```