From 3f7eb03eaf2971aa6ac43a417181065165bc7544 Mon Sep 17 00:00:00 2001 From: Jeffrey Walton Date: Tue, 21 Nov 2017 15:29:41 -0500 Subject: Update documentation --- speck.h | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) (limited to 'speck.h') diff --git a/speck.h b/speck.h index 1863e9f3..7f4acc38 100644 --- a/speck.h +++ b/speck.h @@ -55,8 +55,13 @@ struct SPECK_Base //! \class SPECK64 //! \brief SPECK 64-bit block cipher +//! \details Speck is a block cipher designed by Ray Beaulieu, Douglas Shors, Jason Smith, +//! Stefan Treatman-Clark, Bryan Weeks and Louis Wingers. //! \details SPECK64 provides 64-bit block size. The valid key sizes are 96-bit and 128-bit. -//! \sa SPECK64, SPECK128, SPECK +//! \sa SPECK64, SPECK128, The SIMON and SPECK +//! Families of Lightweight Block Ciphers, +//! The Simon and Speck GitHub, SPECK on the +//! Crypto++ wiki //! \since Crypto++ 6.0 class CRYPTOPP_NO_VTABLE SPECK64 : public SPECK_Info<8, 12, 12, 16>, public BlockCipherDocumentation { @@ -102,8 +107,13 @@ public: //! \class SPECK128 //! \brief SPECK 128-bit block cipher +//! \details Speck is a block cipher designed by Ray Beaulieu, Douglas Shors, Jason Smith, +//! Stefan Treatman-Clark, Bryan Weeks and Louis Wingers. //! \details SPECK128 provides 128-bit block size. The valid key sizes are 128-bit, 192-bit and 256-bit. -//! \sa SPECK64, SPECK128, SPECK +//! \sa SPECK64, SPECK128, The SIMON and SPECK +//! Families of Lightweight Block Ciphers, +//! The Simon and Speck GitHub, SPECK on the +//! Crypto++ wiki //! \since Crypto++ 6.0 class CRYPTOPP_NO_VTABLE SPECK128 : public SPECK_Info<16, 16, 16, 32>, public BlockCipherDocumentation { -- cgit v1.2.1