[package]
edition = "2021"
rust-version = "1.89"
name = "oxicrypto-sig"
version = "0.1.0"
authors = ["COOLJAPAN OU (Team Kitasan)"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Pure Rust digital signature implementations for OxiCrypto (Ed25519, ECDSA P-256/384/521, Ed448, RSA PKCS#1v15 / PSS)"
readme = false
keywords = [
"cryptography",
"ed25519",
"ecdsa",
"rsa",
"pure-rust",
]
categories = ["cryptography"]
license = "Apache-2.0"
repository = "https://github.com/cool-japan/oxicrypto"
[features]
default = []
std = [
"ed25519-dalek/std",
"oxicrypto-core/std",
]
[lib]
name = "oxicrypto_sig"
path = "src/lib.rs"
[[test]]
name = "kat_bip340"
path = "tests/kat_bip340.rs"
[[test]]
name = "kat_ecdsa"
path = "tests/kat_ecdsa.rs"
[[test]]
name = "kat_ecdsa_fips"
path = "tests/kat_ecdsa_fips.rs"
[[test]]
name = "kat_ecdsa_wycheproof"
path = "tests/kat_ecdsa_wycheproof.rs"
[[test]]
name = "kat_ed25519"
path = "tests/kat_ed25519.rs"
[[test]]
name = "kat_ed448"
path = "tests/kat_ed448.rs"
[[test]]
name = "kat_rsa"
path = "tests/kat_rsa.rs"
[[test]]
name = "prop_sig"
path = "tests/prop_sig.rs"
[dependencies.curve25519-dalek]
version = "4.1.3"
features = [
"alloc",
"zeroize",
"precomputed-tables",
]
default-features = false
[dependencies.digest]
version = "0.11.3"
features = [
"alloc",
"oid",
]
default-features = false
[dependencies.ed25519-dalek]
version = "2.2.0"
features = ["rand_core"]
default-features = false
[dependencies.ed448-goldilocks]
version = "0.14.0-pre.12"
features = ["signing"]
default-features = false
[dependencies.getrandom]
version = "0.4.2"
features = [
"std",
"sys_rng",
]
[dependencies.k256]
version = "0.14.0-rc.9"
features = [
"schnorr",
"alloc",
]
default-features = false
[dependencies.oxicrypto-core]
version = "0.1.0"
[dependencies.p256]
version = "0.14.0-rc.9"
features = [
"ecdsa",
"alloc",
]
default-features = false
[dependencies.p384]
version = "0.14.0-rc.9"
features = [
"ecdsa",
"alloc",
]
default-features = false
[dependencies.p521]
version = "0.14.0-rc.9"
features = [
"ecdsa",
"alloc",
]
default-features = false
[dependencies.rand_chacha]
version = "0.10.0"
default-features = false
[dependencies.rand_core]
version = "0.10.1"
default-features = false
[dependencies.rsa]
version = "0.10.0-rc.18"
features = ["encoding"]
default-features = false
[dependencies.sha2]
version = "0.11.0"
features = [
"alloc",
"oid",
]
default-features = false
[dependencies.sha3]
version = "0.12.0"
default-features = false
[dependencies.zeroize]
version = "1.8.2"
features = [
"derive",
"alloc",
]
default-features = false
[dev-dependencies.oxicrypto-rand]
version = "0.1.0"