wolfssl-wolfcrypt 0.1.0

Rust wrapper for wolfssl C library cryptographic functionality
[build-dependencies.bindgen]
version = "0.72.1"

[build-dependencies.regex]
version = "1.5"

[features]
std = []

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

[package]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = "build.rs"
categories = ["cryptography", "security", "api-bindings"]
description = "Rust wrapper for wolfssl C library cryptographic functionality"
documentation = "https://github.com/wolfSSL/wolfssl/tree/master/wrapper/rust"
edition = "2024"
keywords = ["wolfssl", "fips", "security", "encryption", "cryptography"]
license = "GPL-3.0"
name = "wolfssl-wolfcrypt"
readme = "README.md"
repository = "https://github.com/wolfSSL/wolfssl"
version = "0.1.0"

[profile.release]
codegen-units = 1
lto = true
opt-level = "s"
panic = "abort"
strip = true

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

[[test]]
name = "test_cmac"
path = "tests/test_cmac.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"