summaryrefslogtreecommitdiff
path: root/simeck.h
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2018-07-01 03:42:17 -0400
committerJeffrey Walton <noloader@gmail.com>2018-07-01 03:42:17 -0400
commitc58ea35e23acd34aee220a7929c252392345a7d6 (patch)
tree9fda8f4a28c5b5733faa41c4c015877bf3d69fe4 /simeck.h
parent64d15aff668da71290ff104353d2974e04ff5801 (diff)
downloadcryptopp-git-c58ea35e23acd34aee220a7929c252392345a7d6.tar.gz
Update documentation
Diffstat (limited to 'simeck.h')
-rw-r--r--simeck.h15
1 files changed, 9 insertions, 6 deletions
diff --git a/simeck.h b/simeck.h
index 95945528..d3feb452 100644
--- a/simeck.h
+++ b/simeck.h
@@ -4,6 +4,9 @@
/// \file simeck.h
/// \brief Classes for the SIMECK block cipher
+/// \sa <a href="http://www.cryptopp.com/wiki/SIMECK">SIMECK</a>,
+/// <a href="https://eprint.iacr.org/2015/612.pdf">The Simeck
+/// Family of Lightweight Block Ciphers</a>
/// \since Crypto++ 7.1
#ifndef CRYPTOPP_SIMECK_H
@@ -45,9 +48,9 @@ struct SIMECK64_Info : public FixedBlockSize<8>, public FixedKeyLength<16>, publ
/// \brief SIMECK 32-bit block cipher
/// \details SIMECK32 provides 32-bit block size. The valid key size is 64-bit.
/// \note Crypto++ provides a byte oriented implementation
-/// \sa SIMECK64, <a href="http://www.cryptopp.com/wiki/SIMECK">SIMECK</a>, <a href=
-/// "https://eprint.iacr.org/2015/612.pdf">The Simeck Family of Lightweight Block
-/// Ciphers</a>
+/// \sa SIMECK64, <a href="http://www.cryptopp.com/wiki/SIMECK">SIMECK</a>,
+/// <a href="https://eprint.iacr.org/2015/612.pdf">The Simeck Family of
+/// Lightweight Block Ciphers</a>
/// \since Crypto++ 7.1
class CRYPTOPP_NO_VTABLE SIMECK32 : public SIMECK32_Info, public BlockCipherDocumentation
{
@@ -94,9 +97,9 @@ typedef SIMECK32::Decryption SIMECK32Decryption;
/// \brief SIMECK 64-bit block cipher
/// \details SIMECK64 provides 64-bit block size. The valid key size is 128-bit.
/// \note Crypto++ provides a byte oriented implementation
-/// \sa SIMECK32, <a href="http://www.cryptopp.com/wiki/SIMECK">SIMECK</a>, <a href=
-/// "https://eprint.iacr.org/2015/612.pdf">The Simeck Family of Lightweight Block
-/// Ciphers</a>
+/// \sa SIMECK32, <a href="http://www.cryptopp.com/wiki/SIMECK">SIMECK</a>,
+/// <a href= "https://eprint.iacr.org/2015/612.pdf">The Simeck Family of
+/// Lightweight Block Ciphers</a>
/// \since Crypto++ 7.1
class CRYPTOPP_NO_VTABLE SIMECK64 : public SIMECK64_Info, public BlockCipherDocumentation
{