CryptGuard Programming Library

Introduction
CryptGuard is a comprehensive cryptographic library, offering robust encryption and decryption capabilities. It integrates traditional cryptography with post-quantum algorithms, ensuring resilience against quantum computing threats. Designed for developers, CryptGuard empowers applications to withstand future digital security challenges. Embrace CryptGuard as your trusted ally in safeguarding privacy in the digital realm.
Prerequisites
Ensure your system has the latest stable versions of Rust, Cargo, and the Tokio runtime environment.
Usage
New Feature: Dilithium
The dilithium feature in CryptGuard introduces the Dilithium algorithm, a post-quantum cryptographic signing method. This feature is optional and can be enabled in your Cargo.toml.
Signing a Message with Dilithium
To sign a message using Dilithium,
#[cfg(feature = "dilithium")]
#[tokio::main]
async fn main() {
#[cfg(feature = "dilithium")]
{
let mut sign = SignDilithium::new().unwrap();
let message = b"Hello, this is a test message";
let signed_message = sign.sign_msg(message).await.expect("Failed to sign message with Dilithium");
println!("Signed message with Dilithium: {:?}", signed_message);
}
}
Verifying a Signed Message with Dilithium
To verify a signed message,
#[cfg(feature = "dilithium")]
#[tokio::main]
async fn main() {
#[cfg(feature = "dilithium")]
{
let mut sign = SignDilithium::new().unwrap();
let message = b"Hello, this is a test message";
let signed_message = sign.sign_msg(message).await.expect("Failed to sign message");
let verification_result = sign.verify_msg(message).await.expect("Failed to verify message");
assert!(verification_result, "Verification failed for the signed message with Dilithium");
}
}
Signing a File with Dilithium
For signing a file using Dilithium,
#[cfg(feature = "dilithium")]
#[tokio::main]
async fn main() {
#[cfg(feature = "dilithium")]
{
let mut sign = SignDilithium::new().unwrap();
let file_path = PathBuf::from("path/to/your/file.txt");
let signed_file = sign.sign_file(file_path.clone()).await.expect("Failed to sign file with Dilithium");
println!("Signed file with Dilithium: {:?}", signed_file);
}
}
These examples demonstrate the usage of the dilithium feature in CryptGuard for signing and verifying messages and files, showcasing the library's capabilities with post-quantum cryptography.
Encrypting Data
Encrypt data using encrypt, encrypt_msg, or encrypt_file functions from the Encrypt struct.
Encrypt a Message
use crypt_guard::{
File,
Encrypt,
Decrypt,
Keychain,
FileRemover,
Signing,
Sign,
ActionType,
};
#[tokio::main]
async fn main() {
let encrypt = Encrypt::new();
let keychain = Keychain::new().unwrap();
let message = "This is a secret message!";
let hmac_key = b"encryption_test_key";
let encrypted_message = encrypt.encrypt_msg(message, keychain.shared_secret.as_ref().unwrap(), hmac_key)
.await
.expect("Failed to encrypt message");
}
Encrypt a File
#[tokio::main]
async fn main() {
let encrypt = Encrypt::new();
let keychain = Keychain::new().unwrap();
let file_path = PathBuf::from("path/to/your/file.txt");
let hmac_key = b"encryption_test_key";
let _ = encrypt.encrypt_file(file_path, keychain.shared_secret.as_ref().unwrap(), hmac_key)
.await
.expect("Failed to encrypt file");
}
Decrypting Data
Decrypt data using decrypt, decrypt_msg, or decrypt_file functions from the Decrypt struct.
#[tokio::main]
async fn main() {
let decrypt = Decrypt::new();
let keychain = Keychain::new().unwrap();
let encrypted_data = ...; let hmac_key = b"encryption_test_key";
let decrypted_message = decrypt.decrypt_msg(encrypted_data, keychain.shared_secret.as_ref().unwrap(), hmac_key)
.await
.expect("Failed to decrypt message");
let file_path = PathBuf::from("path/to/your/encrypted_file.txt");
let _ = decrypt.decrypt_file(file_path, keychain.shared_secret.as_ref().unwrap(), hmac_key)
.await
.expect("Failed to decrypt file");
}
Keychain Usage
The Keychain struct in CryptGuard facilitates key management. It supports loading and saving public keys, secret keys, shared secrets, and ciphertexts.
fn main() {
let keychain = Keychain::new().unwrap();
}
Signing a Message
To sign a message,
#[tokio::main]
async fn main() {
let mut sign = Sign::new().unwrap();
let message = b"Hello, this is a test message";
let signed_message = sign.sign_msg(message).await.expect("Failed to sign message");
println!("Signed message: {:?}", signed_message);
}
Signing a File
For signing a file,
#[tokio::main]
async fn main() {
let mut sign = Sign::new().unwrap();
let file_path = PathBuf::from("path/to/your/file.txt");
let signed_file = sign.sign_file(file_path.clone()).await.expect("Failed to sign file");
println!("Signed file content: {:?}", signed_file);
}
New Feature: xchacha20
The xchacha20 feature in CryptGuard introduces the XChaCha20 encryption algorithm, providing an additional layer of security for your cryptographic needs. This feature is optional and can be enabled in your Cargo.toml.
Encrypting Data with XChaCha20
#[cfg(feature = "xchacha20")]
#[tokio::main]
async fn main() {
#[cfg(feature = "xchacha20")]
{
let encrypt = Encrypt::new();
let keychain = Keychain::new().unwrap();
let message = "This is a secret message!";
let nonce = generate_nonce();
let hmac_key = b"encryption_test_key";
let encrypted_message = encrypt.encrypt_msg_xchacha20(message, keychain.shared_secret.as_ref().unwrap(), &nonce, hmac_key)
.await
.expect("Failed to encrypt message with XChaCha20");
}
}
Decrypting Data with XChaCha20
#[cfg(feature = "xchacha20")]
;
#[tokio::main]
async fn main() {
#[cfg(feature = "xchacha20")]
{
let decrypt = Decrypt::new();
let keychain = Keychain::new().unwrap();
let nonce = ...; let hmac_key = b"encryption_test_key";
let encrypted_data = ...;
let decrypted_message = decrypt.decrypt_msg_xchacha20(encrypted_data, keychain.shared_secret.as_ref().unwrap(), &nonce, hmac_key, false)
.await
.expect("Failed to decrypt message with XChaCha20");
}
}
Removing a Single File
#[tokio::main]
async fn main() {
let file_path = PathBuf::from("path/to/your/file.txt");
let remover = FileRemover::new(5, file_path, false).unwrap();
remover.delete().await.unwrap();
}
Removing a Directory and Its Contents
#[tokio::main]
async fn main() {
let dir_path = PathBuf::from("path/to/your/directory");
let remover = FileRemover::new(5, dir_path, true).unwrap();
remover.delete().await.unwrap();
}
Removing Multiple Files with Unique Filenames
#[tokio::main]
async fn main() {
let dir = tempfile::TempDir::new().unwrap();
for i in 0..10 {
let file_name = format!("file{}.txt", i);
let file_path = dir.path().join(file_name);
let mut file = File::create(file_path).unwrap();
write!(file, "File {} contents", i).unwrap();
}
let remover = FileRemover::new(5, dir.path().to_path_buf(), false).unwrap();
remover.delete().await.unwrap();
}
Customize Overwrite Times
Increase the overwrite times to enhance the security of file removal.
#[tokio::main]
async fn main() {
let file_path = PathBuf::from("path/to/your/file.txt");
let remover = FileRemover::new(100, file_path, false).unwrap();
remover.delete().await.unwrap();
}
File Remover
File Remover
The file_remover module in CryptGuard introduces a new function for securely removing files and directories. This module includes the FileRemover struct, which provides several methods for removing files and directories, including:
delete(): Deletes a single file or directory recursively (if recursive is set to true).
overwrite_file(): Overwrites a file multiple times with random data to prevent data recovery.
new(): Creates a new FileRemover instance with customizable overwrite times and recursive deletion options.
File Remover with Unique Filenames
The FileRemover can also be used to remove multiple files with unique filenames.
Dependencies
CryptGuard depends on several external crates, specified in Cargo.toml:
aes: 0.8.3
tokio: 1.35.1 (with full feature)
colored: 2.1.0
env: 0.0.0
hex: 0.4.3
hmac: 0.12.1
indicatif: 0.17.7
pqcrypto-falcon: 0.3.0
pqcrypto-kyber: 0.8.0
pqcrypto-traits: 0.3.5
rand: 0.8.5
sha2: 0.10.8
tempfile: 3.9.0
chacha20: 0.9.1 (optional, enabled with xchacha20 feature)
cipher: 0.4.4 (optional, enabled with xchacha20 feature)
License
CryptGuard is licensed under the MIT LICENSE. The full license text is available in the LICENSE file in the repository.
You now have the complete README.md content with the updated examples for CryptGuard.