Initialize RSA encryption/decryption project with basic functionality and dependencies
This commit is contained in:
commit
6a45d31aaf
4 changed files with 607 additions and 0 deletions
11
Cargo.toml
Normal file
11
Cargo.toml
Normal 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"
|
Loading…
Add table
Add a link
Reference in a new issue