From 0645e61590f53634f306b34c0a72599ea6666c63 Mon Sep 17 00:00:00 2001 From: Avril Date: Mon, 16 Aug 2021 12:35:18 +0100 Subject: [PATCH] Exposed `cha` module for keygen and `Crypter` creation. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fortune for chacha20stream's current commit: Future blessing − 末吉 --- Cargo.toml | 2 +- src/lib.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 838f981..6027a18 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "chacha20stream" -version = "2.0.1" +version = "2.1.0" keywords = ["chacha20_poly1305", "stream", "wrapper", "encryption", "decryption"] description = "A writable wrapper stream for encryption and decryption with the stream cipher chacha20_poly1305" homepage = "https://git.flanchan.moe/flanchan/chacha20stream" diff --git a/src/lib.rs b/src/lib.rs index cc9680b..f397eea 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -57,7 +57,7 @@ mod private } pub mod key; -mod cha; +pub mod cha; mod stream; mod bytes;