From 3322938717b8c52ba606fb79e2923132f80a344b Mon Sep 17 00:00:00 2001 From: chrysn Date: Mon, 25 Mar 2024 22:44:18 +0100 Subject: [PATCH] ccm: Mention AES-CCM in README (#476) --- ccm/README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/ccm/README.md b/ccm/README.md index a69e6f60..ffd89efe 100644 --- a/ccm/README.md +++ b/ccm/README.md @@ -11,6 +11,9 @@ Pure Rust implementation of the Counter with CBC-MAC ([CCM]) mode ([RFC 3610]): Authenticated Encryption with Associated Data ([AEAD]) algorithm generic over block ciphers with block size equal to 128 bits. +For example, it can be combined with AES into the various parametrizations of +AES-CCM. + [Documentation][docs-link] ## Security Notes