[package]
edition = "2021"
rust-version = "1.89"
name = "oxicrypto-cipher"
version = "0.1.0"
authors = ["COOLJAPAN OU (Team Kitasan)"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Pure Rust raw block/stream cipher primitives for OxiCrypto (AES single-block ECB, ChaCha20 keystream) used by QUIC header protection"
readme = false
keywords = [
"cryptography",
"aes",
"chacha20",
"quic",
"cipher",
]
categories = ["cryptography"]
license = "Apache-2.0"
repository = "https://github.com/cool-japan/oxicrypto"
[features]
default = []
std = ["oxicrypto-core/std"]
[lib]
name = "oxicrypto_cipher"
path = "src/lib.rs"
[dependencies.aes]
version = "0.9.1"
default-features = false
[dependencies.chacha20]
version = "0.10.0"
features = ["cipher"]
default-features = false
[dependencies.oxicrypto-core]
version = "0.1.0"