From 4451724d31f2ef5388f06728ca28b804c00322b5 Mon Sep 17 00:00:00 2001 From: "Tobin C. Harding" Date: Mon, 3 Mar 2025 13:32:15 +1100 Subject: [PATCH] chacha20: Add a docs heading Like we do for the other crates add a heading to the crate docs. --- chacha20_poly1305/src/lib.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/chacha20_poly1305/src/lib.rs b/chacha20_poly1305/src/lib.rs index 42b2df3af..16c82a9ca 100644 --- a/chacha20_poly1305/src/lib.rs +++ b/chacha20_poly1305/src/lib.rs @@ -1,5 +1,7 @@ // SPDX-License-Identifier: CC0-1.0 +//! # ChaCha20 - Poly1305 +//! //! Combine the ChaCha20 stream cipher with the Poly1305 message authentication code //! to form an authenticated encryption with additional data (AEAD) algorithm. #![no_std]