[package]
edition = "2024"
rust-version = "1.85"
name = "isap-aead"
version = "0.3.0"
authors = ["Sebastian Ramacher <sebastian.ramacher@ait.ac.at>"]
build = false
exclude = [
".github/",
".gitignore",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Pure Rust implementation of ISAP v2 with Ascon and Keccak"
homepage = "https://github.com/sebastinas/isap-aead"
readme = "README.md"
keywords = [
"AEAD",
"ISAP",
"encryption",
]
categories = [
"cryptography",
"no-std",
]
license = "MIT"
repository = "https://github.com/sebastinas/isap-aead"
[features]
alloc = ["aead/alloc"]
arrayvec = ["aead/arrayvec"]
ascon = ["dep:ascon-core"]
default = [
"zeroize",
"alloc",
"ascon",
"keccak",
]
getrandom = ["aead/getrandom"]
keccak = ["dep:keccak"]
rand_core = ["aead/rand_core"]
std = ["alloc"]
zeroize = [
"dep:zeroize",
"ascon-core/zeroize",
]
[lib]
name = "isap_aead"
path = "src/lib.rs"
[[test]]
name = "kats_test"
path = "tests/kats_test.rs"
[dependencies.aead]
version = "0.6"
default-features = false
[dependencies.ascon-core]
version = "0.5.1"
features = [
"permute_1",
"permute_6",
]
optional = true
default-features = false
[dependencies.keccak]
version = "0.2"
optional = true
[dependencies.subtle]
version = "2"
[dependencies.zeroize]
version = "1.5"
features = ["derive"]
optional = true
default-features = false
[dev-dependencies.hex]
version = "0.4"
[dev-dependencies.spectral]
version = "0.6"
default-features = false