Initialize RSA encryption/decryption project with basic functionality and dependencies

This commit is contained in:
Bildcraft1 2024-11-06 13:08:02 +01:00
commit 6a45d31aaf
4 changed files with 607 additions and 0 deletions

11
Cargo.toml Normal file
View file

@ -0,0 +1,11 @@
[package]
name = "rsa"
version = "0.1.0"
edition = "2021"
[dependencies]
colog = "1.3.0"
log = "0.4.22"
num-bigint = { version = "0.4.6", features = ["rand"] }
num-traits = "0.2.19"
rand = "0.8.5"