| Crates.io | cryptographic_primitives |
| lib.rs | cryptographic_primitives |
| version | 0.2.0 |
| created_at | 2024-02-13 17:37:00.355381+00 |
| updated_at | 2024-09-16 16:50:12.015462+00 |
| description | A crate that provides cryptographic primitives. |
| homepage | |
| repository | https://github.com/razvanperial/cryptographic_primitives |
| max_upload_size | |
| id | 1138718 |
| size | 110,434 |
This repository contains a collection of cryptographic primitives implemented in Rust. The goal is to provide a comprehensive set of cryptographic primitives that are easy to use and hard to misuse.
This crate was done as a personal project to learn Rust and cryptography, implementing some of the algorithms I learned in the "Secure and Dependable Systems" course at my university. The code is open source and I am happy to receive contributions and feedback. Feel free to open an issue or a pull request on this repository.
If this crate is useful to you, please consider giving it a star on GitHub :)
The crate currently provides the following cryptographic primitives, with an encryption and decryption function for each:
The helpers module provides the following helper functions for cryptographic algorithms:
rotl8initialize_aes_sboxpermutefeistel_round_functionkdfgmix_columngmix_column_invxor_bytesThe constants module provides some useful constants for cryptographic algorithms, such as:
S-BoxP-BoxMIX_COLUMNS_LOOKUP_2, MIX_COLUMNS_LOOKUP_3, MIX_COLUMNS_LOOKUP_9, MIX_COLUMNS_LOOKUP_11, MIX_COLUMNS_LOOKUP_13, MIX_COLUMNS_LOOKUP_14 lookup tables for the AES MixColumns operationThe block_cipher module provides the following block cipher modes of operation, with an encryption and decryption function for each:
For any suggestions or requests, feel free to open an issue on this repository.
Add this to your Cargo.toml:
[dependencies]
cryptographic_primitives = "0.2.0"
You can also use cargo to add the dependency to your Cargo.toml:
cargo add cryptographic_primitives
Then, simply import the crate and use the cryptographic primitives:
use cryptographic_primitives::*;
Here is an example of using the aes_128_encrypt and aes_128_decrypt functions to encrypt and decrypt a plaintext using the Electronic Codebook (ECB) mode of operation:
use cryptographic_primitives::{aes_128_decrypt, aes_128_encrypt};
use cryptographic_primitives::block_ciphers::{ecb_encrypt, ecb_decrypt};
let plaintext = b"Hello, World!";
let key = 0x2b7e151628aed2a6abf7158809cf4f3c;
let encrypted = ecb_encrypt(plaintext, key, aes_128_encrypt).unwrap();
let decrypted = ecb_decrypt(&encrypted, key, aes_128_decrypt).unwrap();
assert_eq!(decrypted, plaintext);
This project is licensed under the MIT license.