feat: improve decrypt

This commit is contained in:
2023-12-01 21:52:26 +08:00
parent 4966ddf72b
commit ae84bbd13b
6 changed files with 105 additions and 46 deletions

View File

@@ -1,6 +1,6 @@
[package]
name = "tiny-encrypt"
version = "0.8.0"
version = "0.8.1"
edition = "2021"
license = "MIT"
description = "A simple and tiny file encrypt tool"
@@ -28,7 +28,7 @@ p256 = { version = "0.13", features = ["pem", "ecdh", "pkcs8"] }
p384 = { version = "0.13", features = ["pem", "ecdh", "pkcs8"] }
rand = "0.8"
# reqwest = { version = "0.11", features = ["blocking", "rustls", "rustls-tls"] }
rpassword = "7.2"
rpassword = "7.3"
rsa = { version = "0.9", features = ["pem"] }
rust-crypto = "0.2"
rust_util = "0.6"
@@ -39,7 +39,7 @@ tabled = "0.14"
x25519-dalek = "2.0"
x509-parser = "0.15"
yubikey = { version = "0.8", features = ["untested"], optional = true }
zeroize = "1.6"
zeroize = "1.7"
[patch.crates-io]
rust-crypto = { git = "https://github.com/jht5945/rust-crypto.git" }