Collection of block ciphers and block modes written in pure Rust.
Currently only AES crates provide constant-time implementations. If you do not really know what you are doing it's generally recommended not to use other cipher implementations in this repository.
Additionally crates in this repository have not yet received any formal cryptographic and security reviews.
USE AT YOUR OWN RISK.
Name | Alt name | Crate name | crates.io | Docs |
---|---|---|---|---|
AES | Rijndael | aes aesni aes-soft |
|
|
Blowfish | blowfish |
|||
DES + 3DES | DEA + 3DEA | des |
||
Kuznyechik | GOST R 34.12-2015 | kuznyechik |
||
Magma | GOST 28147-89 and GOST R 34.12-2015 | magma |
||
RC2 | ARC2 | rc2 |
||
Twofish | twofish |
All crates in this repository support Rust 1.22 or higher. (except aesni
and
aes
crates, which require Rust 1.27) In future minimum supported Rust version
can be changed, but it will be done with the minor version bump.
Block cipher crates provide only bare block cipher implementations. For most
applications you will need to use some block cipher mode of operation
which are generically implemented in the block-modes
crate.
Lets use AES128-CBC with PKCS7 padding to show an example:
extern crate aes_soft as aes;
extern crate block_modes;
use block_modes::{BlockMode, BlockModeIv, Cbc};
use block_modes::block_padding::Pkcs7;
use aes::Aes128;
// create an alias for convinience
type Aes128Cbc = Cbc<Aes128, Pkcs7>;
let mut cipher = Aes128Cbc::new_varkey(key, iv).unwrap();
// buffer must have enough space for message+padding
let mut buffer = [0u8; 32];
// copy message to the buffer
buffer[..msg_len].copy_from_slice(msg);
let encrypted_msg = cipher.encrypt_pad(&mut buffer, msg_len).unwrap();
let mut cipher = Aes128Cbc::new_varkey(key, iv).unwrap();
let decrypted_msg = cipher.decrypt_pad(encrypted_data).unwrap();
Note that this example does not use any authentification which can lead to serious vulnarabilities! For Message Authentication Code implementations take a look at RustCrypto/MACs repository.
Some block modes (e.g. CTR, CFB) effectively transform block ciphers into stream ciphers. Such modes are published under separate crates in the RustCrypto/stream-ciphers repository.
All crates licensed under either of
at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.