Skip to content

Commit

Permalink
aead-stream: move implementation from the aead crate
Browse files Browse the repository at this point in the history
  • Loading branch information
newpavlov committed Sep 23, 2024
1 parent 4823379 commit a789009
Show file tree
Hide file tree
Showing 4 changed files with 467 additions and 0 deletions.
7 changes: 7 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
[workspace]
members = [
"aead-stream",
"aes-gcm",
"aes-gcm-siv",
"aes-siv",
Expand Down
19 changes: 19 additions & 0 deletions aead-stream/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
[package]
name = "aead-stream"
version = "0.1.0"
description = "Generic implementation of the STREAM online authenticated encryption construction"
authors = ["RustCrypto Developers"]
edition = "2021"
license = "Apache-2.0 OR MIT"
readme = "README.md"
documentation = "https://docs.rs/aead-stream"
repository = "https://github.com/RustCrypto/AEADs"
keywords = ["aead", "stream", "encryption"]
categories = ["cryptography", "no-std"]
rust-version = "1.56"

[dependencies]
aead = { version = "=0.6.0-rc.0", default-features = false, features = ["stream"] }

[features]
alloc = ["aead/alloc"]
Loading

0 comments on commit a789009

Please sign in to comment.