[dependencies.aead]
default-features = false
version = "0.5"
[dependencies.aes]
version = "0.8"
[dependencies.cipher]
version = "0.4"
[dependencies.ctr]
version = "0.9"
[dependencies.poly1305]
version = "0.8"
[dependencies.subtle]
default-features = false
version = "2"
[dependencies.zeroize]
default-features = false
version = "1"
[dev-dependencies.aead]
default-features = false
features = ["dev"]
version = "0.5"
[features]
alloc = ["aead/alloc"]
default = ["alloc"]
heapless = ["aead/heapless"]
std = ["aead/std", "alloc"]
stream = ["aead/stream"]
[lib]
name = "aes256ctr_poly1305aes"
path = "src/lib.rs"
[package]
authors = ["Alexander Weiss"]
autobenches = false
autobins = false
autoexamples = false
autotests = false
build = false
categories = ["cryptography", "no-std"]
description = """
Pure Rust implementation of the AES256CTR-Poly1305AES Authenticated Encryption
with optional architecture-specific hardware acceleration.
"""
documentation = "https://docs.rs/aes256ctr-poly1305aes"
edition = "2021"
keywords = ["aead", "aes256ctr", "aes", "poly1305"]
license = "Apache-2.0 OR MIT"
name = "aes256ctr_poly1305aes"
readme = "README.md"
repository = "https://github.com/rustic-rs/aes256ctr_poly1305aes"
rust-version = "1.60.0"
version = "0.2.1"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--document-private-items", "--generate-link-to-definition"]