[package]
edition = "2024"
name = "wolfssl-wolfcrypt"
version = "1.1.0"
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Rust wrapper for wolfssl C library cryptographic functionality"
documentation = "https://github.com/wolfSSL/wolfssl/tree/master/wrapper/rust"
readme = "README.md"
keywords = [
"wolfssl",
"fips",
"security",
"encryption",
"cryptography",
]
categories = [
"cryptography",
"security",
"api-bindings",
]
license = "GPL-3.0"
repository = "https://github.com/wolfSSL/wolfssl"
[features]
std = []
[lib]
name = "wolfssl_wolfcrypt"
path = "src/lib.rs"
[[test]]
name = "test_aes"
path = "tests/test_aes.rs"
[[test]]
name = "test_blake2"
path = "tests/test_blake2.rs"
[[test]]
name = "test_chacha20_poly1305"
path = "tests/test_chacha20_poly1305.rs"
[[test]]
name = "test_cmac"
path = "tests/test_cmac.rs"
[[test]]
name = "test_curve25519"
path = "tests/test_curve25519.rs"
[[test]]
name = "test_dh"
path = "tests/test_dh.rs"
[[test]]
name = "test_ecc"
path = "tests/test_ecc.rs"
[[test]]
name = "test_ed25519"
path = "tests/test_ed25519.rs"
[[test]]
name = "test_ed448"
path = "tests/test_ed448.rs"
[[test]]
name = "test_hkdf"
path = "tests/test_hkdf.rs"
[[test]]
name = "test_hmac"
path = "tests/test_hmac.rs"
[[test]]
name = "test_kdf"
path = "tests/test_kdf.rs"
[[test]]
name = "test_prf"
path = "tests/test_prf.rs"
[[test]]
name = "test_random"
path = "tests/test_random.rs"
[[test]]
name = "test_rsa"
path = "tests/test_rsa.rs"
[[test]]
name = "test_sha"
path = "tests/test_sha.rs"
[[test]]
name = "test_wolfcrypt"
path = "tests/test_wolfcrypt.rs"
[build-dependencies.bindgen]
version = "0.72.1"
[build-dependencies.regex]
version = "1.5"
[profile.release]
opt-level = "s"
lto = true
codegen-units = 1
panic = "abort"
strip = true