From 83941c4ad852b11321578262006d0daebf8cdaf6 Mon Sep 17 00:00:00 2001 From: Hatter Jiang Date: Sun, 27 Aug 2023 23:15:16 +0800 Subject: [PATCH] feat: update comments --- src/lib.rs | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index 58bc925..81c6f02 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,4 +1,15 @@ -// ---------------------------------------- +/// This library is created for AES/GCM stream encrypt or decrypt +/// +/// Structs for encryption: +/// * Aes128GcmStreamEncryptor +/// * Aes192GcmStreamEncryptor +/// * Aes256GcmStreamEncryptor +/// +/// Structs for decryption: +/// * Aes128GcmStreamDecryptor +/// * Aes192GcmStreamDecryptor +/// * Aes256GcmStreamDecryptor + pub use decryptor::Aes128GcmStreamDecryptor; pub use decryptor::Aes192GcmStreamDecryptor; pub use decryptor::Aes256GcmStreamDecryptor;