From 0fab2a188f2817c349c781272ae18b972daedaf0 Mon Sep 17 00:00:00 2001 From: Jeffrey Walton Date: Tue, 21 Nov 2017 05:58:11 -0500 Subject: [PATCH] Update documentation --- simon.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/simon.h b/simon.h index 8b1a826d..c94df6d7 100644 --- a/simon.h +++ b/simon.h @@ -4,9 +4,9 @@ //! \brief Classes for the Simon block cipher //! \details Simon is a block cipher designed by Ray Beaulieu, Douglas Shors, Jason Smith, //! Stefan Treatman-Clark, Bryan Weeks and Louis Wingers. -//! \sa The SIMON and SIMON Families of +//! \sa The SIMON and SPECK Families of //! Lightweight Block Ciphers and -//! The Simon and Simon GitHub +//! The Simon and Speck GitHub //! \since Crypto++ 6.0 #ifndef CRYPTOPP_SIMON_H @@ -39,7 +39,7 @@ struct SIMON_Info : public FixedBlockSize, VariableKeyLength //! \brief SIMON block cipher base class //! \tparam BS block size of the cipher, in bytes //! \details User code should use SIMON64 or SIMON128 -//! \sa SIMON64, SIMON128, SIMON +//! \sa SIMON64, SIMON128, SIMON on the Crypto++ wiki //! \since Crypto++ 6.0 template struct SIMON_Base @@ -56,7 +56,7 @@ struct SIMON_Base //! \brief SIMON 64-bit block cipher //! \details SIMON64 provides 64-bit block size. The valid key sizes are 98-bit and 128-bit. //! \note Crypto++ provides a byte oriented implementation -//! \sa SIMON64, SIMON128, SIMON +//! \sa SIMON64, SIMON128, SIMON on the Crypto++ wiki //! \since Crypto++ 6.0 class CRYPTOPP_NO_VTABLE SIMON64 : public SIMON_Info<8, 12, 12, 16>, public BlockCipherDocumentation { @@ -103,7 +103,7 @@ public: //! \brief SIMON 128-bit block cipher //! \details SIMON128 provides 128-bit block size. The valid key sizes are 128-bit, 192-bit and 256-bit. //! \note Crypto++ provides a byte oriented implementation -//! \sa SIMON64, SIMON128, SIMON +//! \sa SIMON64, SIMON128, SIMON on the Crypto++ wiki //! \since Crypto++ 6.0 class CRYPTOPP_NO_VTABLE SIMON128 : public SIMON_Info<16, 16, 16, 32>, public BlockCipherDocumentation {