summaryrefslogtreecommitdiff
path: root/simon.h
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2017-11-21 05:58:11 -0500
committerJeffrey Walton <noloader@gmail.com>2017-11-21 05:58:11 -0500
commit0fab2a188f2817c349c781272ae18b972daedaf0 (patch)
tree94cc942d5efe6d16771e84f7ef58bbe9f95ada0f /simon.h
parent79273a0f4d90b36306b23ed6a062b6e005821307 (diff)
downloadcryptopp-git-0fab2a188f2817c349c781272ae18b972daedaf0.tar.gz
Update documentation
Diffstat (limited to 'simon.h')
-rw-r--r--simon.h10
1 files 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 <A HREF="http://eprint.iacr.org/2013/404">The SIMON and SIMON Families of
+//! \sa <A HREF="http://eprint.iacr.org/2013/404">The SIMON and SPECK Families of
//! Lightweight Block Ciphers</A> and <A HREF="http://iadgov.github.io/simon-simon/">
-//! The Simon and Simon GitHub</A>
+//! The Simon and Speck GitHub</A>
//! \since Crypto++ 6.0
#ifndef CRYPTOPP_SIMON_H
@@ -39,7 +39,7 @@ struct SIMON_Info : public FixedBlockSize<BS>, VariableKeyLength<D, N, M>
//! \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, <a href="http://www.cryptopp.com/wiki/SIMON">SIMON</a>
+//! \sa SIMON64, SIMON128, <a href="http://www.cryptopp.com/wiki/SIMON">SIMON</a> on the Crypto++ wiki
//! \since Crypto++ 6.0
template <class W>
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, <a href="http://www.cryptopp.com/wiki/SIMON">SIMON</a>
+//! \sa SIMON64, SIMON128, <a href="http://www.cryptopp.com/wiki/SIMON">SIMON</a> 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, <a href="http://www.cryptopp.com/wiki/SIMON">SIMON</a>
+//! \sa SIMON64, SIMON128, <a href="http://www.cryptopp.com/wiki/SIMON">SIMON</a> on the Crypto++ wiki
//! \since Crypto++ 6.0
class CRYPTOPP_NO_VTABLE SIMON128 : public SIMON_Info<16, 16, 16, 32>, public BlockCipherDocumentation
{