summaryrefslogtreecommitdiff
path: root/speck.h
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2018-01-19 14:31:20 -0500
committerJeffrey Walton <noloader@gmail.com>2018-01-19 14:31:20 -0500
commitbefd04312d8bdf2363921bf5ccb1393f5852a9a3 (patch)
treead07d8a6f73216719e0cb01aa6c5cd4a6cc34fb9 /speck.h
parent24a9466e54f113fc4a114051e8276987e0493dc8 (diff)
downloadcryptopp-git-befd04312d8bdf2363921bf5ccb1393f5852a9a3.tar.gz
Remove unneeded Doxygen directive
Diffstat (limited to 'speck.h')
-rw-r--r--speck.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/speck.h b/speck.h
index 6571074e..88f87d3b 100644
--- a/speck.h
+++ b/speck.h
@@ -26,7 +26,6 @@
NAMESPACE_BEGIN(CryptoPP)
-/// \class SPECK_Info
/// \brief SPECK block cipher information
/// \tparam L block size of the cipher, in bytes
/// \tparam D default key length, in bytes
@@ -43,7 +42,6 @@ struct SPECK_Info : public FixedBlockSize<L>, VariableKeyLength<D, N, M>
}
};
-/// \class SPECK_Base
/// \brief SPECK block cipher base class
/// \tparam W the word type
/// \details User code should use SPECK64 or SPECK128
@@ -62,7 +60,6 @@ struct SPECK_Base
unsigned int m_rounds; // number of rounds
};
-/// \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.
@@ -120,7 +117,6 @@ public:
typedef BlockCipherFinal<DECRYPTION, Dec> Decryption;
};
-/// \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.