• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1[package]
2name = "pkcs1"
3version = "0.7.5"
4description = """
5Pure Rust implementation of Public-Key Cryptography Standards (PKCS) #1:
6RSA Cryptography Specifications Version 2.2 (RFC 8017)
7"""
8authors = ["RustCrypto Developers"]
9license = "Apache-2.0 OR MIT"
10repository = "https://github.com/RustCrypto/formats/tree/master/pkcs1"
11categories = ["cryptography", "data-structures", "encoding", "no-std", "parser-implementations"]
12keywords = ["crypto", "key", "pem", "pkcs", "rsa"]
13readme = "README.md"
14edition = "2021"
15rust-version = "1.60"
16
17[dependencies]
18der = { version = "0.7", features = ["oid"] }
19spki = { version = "0.7" }
20
21# optional dependencies
22pkcs8 = { version = "0.10", optional = true, default-features = false }
23
24[dev-dependencies]
25const-oid = { version = "0.9", features = ["db"] } # TODO: path = "../const-oid"
26hex-literal = "0.4"
27tempfile = "3"
28
29[features]
30zeroize = ["der/zeroize"]
31alloc = ["der/alloc", "zeroize", "pkcs8?/alloc"]
32pem = ["alloc", "der/pem", "pkcs8?/pem"]
33std = ["der/std", "alloc"]
34
35[package.metadata.docs.rs]
36all-features = true
37rustdoc-args = ["--cfg", "docsrs"]
38