forked from privacy-ethereum/zkpdf
-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
31 lines (27 loc) · 787 Bytes
/
Cargo.toml
File metadata and controls
31 lines (27 loc) · 787 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
[package]
name = "signature-validator"
version = "0.1.0"
edition = "2021"
authors = ["Kushmanmb"]
description = "PKCS#7 digital signature validation (RSA-SHA256) for PDF documents"
repository = "https://github.com/Kushmanmb/kushmanmb"
license = "MIT"
keywords = ["pdf", "pkcs7", "signature", "rsa", "verification"]
categories = ["cryptography", "authentication"]
[dependencies]
hex = "0.4.3"
simple_asn1 = "0.6.3"
rsa = "0.9.10"
sha2 = { version = "0.10.8", features = ["oid"] }
sha1 = { version = "0.10.6", features = ["oid"] }
num-bigint = "0.4.6"
num-traits = "0.2.19"
thiserror = "1.0"
# ECDSA
p256 = { version = "0.13", features = ["ecdsa"] }
p384 = { version = "0.13", features = ["ecdsa"] }
signature = "2.2"
[features]
private_tests = []
[dev-dependencies]
rand_core = "0.6"