From 0be5c679b72d9921786e09fa84c14a133ab0cd2b Mon Sep 17 00:00:00 2001 From: Hugo Hakim Damer Date: Sun, 4 Aug 2024 21:05:38 +0200 Subject: [PATCH] fixup! chore: apply suggestions from code review (#13) --- src/lib.rs | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index abfcda7..a3f2762 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -109,7 +109,12 @@ //! # Token handling //! //! This crate also provides some functionality regarding the encoding and decoding of access -//! tokens, especially of CBOR Web Tokens. +//! tokens, especially of CBOR Web Tokens (CWTs), which are based on the COSE specification +//! (RFC 9052). +//! +//! Generation and validation of CWTs is supported for CWTs based on signed and encrypted +//! COSE objects. Additionally, helper methods are provided to more easily create and validate +//! COSE objects that are encrypted, signed or authenticated using MACs. //! //! See the [token] module-level documentation for more information.