Crates.io | safe_paillier_rust |
lib.rs | safe_paillier_rust |
version | 0.1.4 |
source | src |
created_at | 2024-03-05 21:30:04.993979 |
updated_at | 2024-03-05 21:56:29.002447 |
description | An implementation of the Paillier cryptosystem with homomorphic properties, leveraging Rust's type system and safety guarantees. |
homepage | |
repository | https://github.com/crypto-keys-unlocked/safe_paillier_rust/ |
max_upload_size | |
id | 1164062 |
size | 44,114 |
safe_paillier_rust
is a Rust implementation of the Paillier cryptosystem, a probabilistic asymmetric algorithm for public key cryptography renowned for its homomorphic properties. These properties enable secure computations on ciphertexts that, once decrypted, yield results as if operations were directly performed on the plaintexts.
Leveraging Rust's strong type system and memory safety, this library aims to offer a secure and efficient solution for cryptographic operations, particularly in contexts requiring data privacy and integrity.
The library depends on several Rust crates for big integer arithmetic and random number generation, ensuring robust and efficient implementation:
[dependencies]
num-bigint = "0.4"
num-prime = "0.4.3"
rand = "0.8"
num-traits = "0.2"
num-modular = "0.6.1"
To use safe_paillier_rust
in your Rust project, add it as a dependency in your Cargo.toml
file:
[dependencies]
safe_paillier_rust = "0.1.4"
Make sure to use the latest version of safe_paillier_rust
available on crates.io.
After adding the crate to your project, you can use it to perform cryptographic operations, such as key generation, encryption, and decryption. Here's a basic example demonstrating these functionalities:
// Import the necessary modules from the crate
use safe_paillier_rust::{keygen::key_gen, encryption::encryption, decryption::decryption};
use num_bigint::BigUint;
fn main() {
// Generate public and private keys with a specified bit size
let bit_size = 512;
let (public_key, private_key) = key_gen(bit_size);
// Define a message as a BigUint
let message = BigUint::from(123u32);
// Encrypt the message using the public key
let ciphertext = encryption(message.clone(), &public_key);
// Decrypt the ciphertext using the private key and public key
let decrypted_message = decryption(ciphertext, &public_key, &private_key);
// Verify the decryption result matches the original message
assert_eq!(message, decrypted_message);
println!("Encryption and decryption successful!");
}
This example demonstrates how to integrate safe_paillier_rust
into your Rust project for secure cryptographic operations. Replace the bit_size
and message
values as needed for your specific use case.
The library includes benchmarks to evaluate the performance of cryptographic operations, including homomorphic additions and multiplications. To run these benchmarks:
cargo bench
from the project root.Refer to the project documentation for detailed benchmark instructions and results.
For a deeper understanding of the Paillier cryptosystem and its homomorphic capabilities, consult the original paper by Pascal Paillier (1999).
Contributions are welcome to enhance the library's features or performance. Please adhere to existing coding standards and include tests for new functionalities.
This project is made available under the MIT License. See the LICENSE file for more details.
For inquiries or collaboration, please open an issue in the GitHub repository or contact the maintainers directly.