[package]
edition = "2021"
rust-version = "1.89"
name = "oxicrypto-aead"
version = "0.1.0"
authors = ["COOLJAPAN OU (Team Kitasan)"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Pure Rust AEAD implementations for OxiCrypto (AES-GCM, ChaCha20-Poly1305, AES-GCM-SIV, XChaCha20-Poly1305)"
readme = false
keywords = [
"cryptography",
"aead",
"aes-gcm",
"chacha20",
"xchacha20",
]
categories = ["cryptography"]
license = "Apache-2.0"
repository = "https://github.com/cool-japan/oxicrypto"
[features]
default = []
std = ["oxicrypto-core/std"]
[lib]
name = "oxicrypto_aead"
path = "src/lib.rs"
[[test]]
name = "kat_aes_ccm"
path = "tests/kat_aes_ccm.rs"
[[test]]
name = "kat_aes_gcm_full"
path = "tests/kat_aes_gcm_full.rs"
[[test]]
name = "kat_aes_gcm_siv"
path = "tests/kat_aes_gcm_siv.rs"
[[test]]
name = "kat_chacha20poly1305"
path = "tests/kat_chacha20poly1305.rs"
[[test]]
name = "kat_deoxys"
path = "tests/kat_deoxys.rs"
[[test]]
name = "kat_gcm"
path = "tests/kat_gcm.rs"
[[test]]
name = "kat_xchacha20"
path = "tests/kat_xchacha20.rs"
[dependencies.aead]
version = "0.5.2"
default-features = false
[dependencies.aes]
version = "0.9.1"
features = ["hazmat"]
default-features = false
[dependencies.aes-gcm]
version = "0.10.3"
features = ["aes"]
default-features = false
[dependencies.aes-gcm-siv]
version = "0.11.1"
features = ["aes"]
default-features = false
[dependencies.aes-kw]
version = "0.3.1"
default-features = false
[dependencies.chacha20poly1305]
version = "0.10.1"
default-features = false
[dependencies.ocb3]
version = "0.1.0"
default-features = false
[dependencies.oxicrypto-core]
version = "0.1.0"
[dependencies.subtle]
version = "2.6.1"
default-features = false