certkit 0.1.0

A pure Rust library for X.509 certificate management, creation, and validation, supporting RSA, ECDSA, and Ed25519 keys, with no OpenSSL or ring dependencies.
Documentation
[dependencies.base64]
version = "0.22.1"

[dependencies.bon]
version = "3"

[dependencies.const-oid]
features = ["db"]
version = "0.9.6"

[dependencies.der]
version = "0.7"

[dependencies.ecdsa]
features = ["verifying"]
version = "0.16"

[dependencies.ed25519-dalek]
features = ["rand_core", "pkcs8", "pem"]
version = "2"

[dependencies.p256]
features = ["ecdsa", "pkcs8"]
version = "0.13"

[dependencies.p384]
features = ["ecdsa", "pkcs8"]
version = "0.13"

[dependencies.p521]
features = ["ecdsa", "pkcs8"]
version = "0.13"

[dependencies.pem]
version = "3"

[dependencies.pkcs8]
version = "0.10.2"

[dependencies.rand]
version = "0.9.1"

[dependencies.rand_core]
version = "0.6"

[dependencies.regex]
version = "1.7"

[dependencies.rsa]
version = "0.9"

[dependencies.sha1]
version = "0.10"

[dependencies.sha2]
default-features = false
features = ["oid"]
version = "0.10"

[dependencies.thiserror]
version = "1.0"

[dependencies.time]
version = "0.3"

[dependencies.x509-cert]
version = "0.2.5"

[dev-dependencies.botan]
features = ["vendored"]
version = "0.11"

[dev-dependencies.openssl]
version = "0.10"

[lib]
name = "certkit"
path = "src/lib.rs"

[package]
authors = ["Nick Cardin <nick@cardin.email>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["cryptography", "authentication"]
description = "A pure Rust library for X.509 certificate management, creation, and validation, supporting RSA, ECDSA, and Ed25519 keys, with no OpenSSL or ring dependencies."
documentation = "https://docs.rs/certkit"
edition = "2024"
homepage = "https://github.com/nacardin/certkit"
keywords = ["x509", "certificate", "crypto", "pki", "tls"]
license = "MIT OR Apache-2.0"
name = "certkit"
readme = "README.md"
repository = "https://github.com/nacardin/certkit.git"
version = "0.1.0"

[[test]]
name = "botan"
path = "tests/botan.rs"

[[test]]
name = "openssl"
path = "tests/openssl.rs"

[[test]]
name = "test"
path = "tests/test.rs"

[[test]]
name = "util"
path = "tests/util.rs"