[package]
edition = "2021"
name = "wolfcrypt-ring-testing"
version = "0.1.3"
authors = ["WolfSSL Inc"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Tests and benchmarks for wolfcrypt-ring-compat"
homepage = "http://wolfssl.com"
readme = "README.md"
keywords = [
"wolfcrypt",
"wolfssl",
"fips",
"ring",
"benchmarks",
]
categories = ["cryptography"]
license = "GPL-3.0-only OR LicenseRef-wolfSSL-commercial"
repository = "https://github.com/wolfSSL/wolfssl-rs"
[features]
fips = ["wolfcrypt-ring-compat/fips"]
openssl-benchmarks = []
ring-benchmarks = []
ring-sig-verify = ["wolfcrypt-ring-compat/ring-sig-verify"]
[[test]]
name = "aead_test"
path = "tests/aead_test.rs"
[[test]]
name = "agreement_tests"
path = "tests/agreement_tests.rs"
[[test]]
name = "hkdf_test"
path = "tests/hkdf_test.rs"
[[test]]
name = "quic_test"
path = "tests/quic_test.rs"
[[test]]
name = "rsa_test"
path = "tests/rsa_test.rs"
[[bench]]
name = "aead_benchmark"
path = "benches/aead_benchmark.rs"
harness = false
[[bench]]
name = "agreement_benchmark"
path = "benches/agreement_benchmark.rs"
harness = false
[[bench]]
name = "cipher_benchmark"
path = "benches/cipher_benchmark.rs"
harness = false
[[bench]]
name = "digest_benchmark"
path = "benches/digest_benchmark.rs"
harness = false
[[bench]]
name = "ecdsa_benchmark"
path = "benches/ecdsa_benchmark.rs"
harness = false
[[bench]]
name = "ed25519_benchmark"
path = "benches/ed25519_benchmark.rs"
harness = false
[[bench]]
name = "hkdf_benchmark"
path = "benches/hkdf_benchmark.rs"
harness = false
[[bench]]
name = "hmac_benchmark"
path = "benches/hmac_benchmark.rs"
harness = false
[[bench]]
name = "kem_benchmark"
path = "benches/kem_benchmark.rs"
[[bench]]
name = "pbkdf2_benchmark"
path = "benches/pbkdf2_benchmark.rs"
harness = false
[[bench]]
name = "quic_benchmark"
path = "benches/quic_benchmark.rs"
harness = false
[[bench]]
name = "rsa_benchmark"
path = "benches/rsa_benchmark.rs"
harness = false
[dependencies.wolfcrypt-ring-compat]
version = "1.0"
optional = true
[dev-dependencies.criterion]
version = "0.8.2"
features = ["csv_output"]
[dev-dependencies.openssl]
version = "0.10.73"
features = ["vendored"]
[dev-dependencies.paste]
version = "1.0.15"
[dev-dependencies.ring]
version = "0.17.14"
[dev-dependencies.untrusted]
version = "0.7.1"
[dev-dependencies.wolfcrypt-ring-compat]
version = "1.0"
features = [
"ring-sig-verify",
"unstable",
]