feat: init commit, copied from crate chacha20-poly-aead

This commit is contained in:
2023-10-20 00:05:22 +08:00
parent d74c0a2a15
commit 93d778bdcb
16 changed files with 2079 additions and 0 deletions

20
Cargo.toml Normal file
View File

@@ -0,0 +1,20 @@
[package]
name = "chacha20-poly1305-stream"
version = "0.1.0"
edition = "2021"
authors = ["Cesar Eduardo Barros <cesarb@cesarb.eti.br>", "Hatter Jiang <jht5945@gmail.com>"]
description = "A pure Rust implementation of the ChaCha20-Poly1305 AEAD from RFC 7539."
repository = "https://git.hatter.ink/hatter/chacha20-poly1305-stream"
readme = "README.md"
keywords = ["chacha20", "poly1305", "aead", "crypto"]
license = "MIT OR Apache-2.0"
[features]
bench = []
simd = []
simd_opt = ["simd"]
simd_asm = ["simd_opt"]
[dependencies]
constant_time_eq = "0.1.0"
clippy = { version = "0.0.37", optional = true }