From befd04312d8bdf2363921bf5ccb1393f5852a9a3 Mon Sep 17 00:00:00 2001 From: Jeffrey Walton Date: Fri, 19 Jan 2018 14:31:20 -0500 Subject: Remove unneeded Doxygen directive --- des.h | 13 ------------- 1 file changed, 13 deletions(-) (limited to 'des.h') diff --git a/des.h b/des.h index e4171988..569e7d93 100644 --- a/des.h +++ b/des.h @@ -11,7 +11,6 @@ NAMESPACE_BEGIN(CryptoPP) -/// \class RawDES /// \brief DES block cipher base class class CRYPTOPP_DLL RawDES { @@ -25,7 +24,6 @@ protected: FixedSizeSecBlock k; }; -/// \class DES_Info /// \brief DES block cipher information struct DES_Info : public FixedBlockSize<8>, public FixedKeyLength<8> { @@ -33,7 +31,6 @@ struct DES_Info : public FixedBlockSize<8>, public FixedKeyLength<8> CRYPTOPP_STATIC_CONSTEXPR const char* StaticAlgorithmName() {return "DES";} }; -/// \class DES /// \brief DES block cipher /// \details The DES implementation in Crypto++ ignores the parity bits /// (the least significant bits of each byte) in the key. However you can use CheckKeyParityBits() @@ -42,7 +39,6 @@ struct DES_Info : public FixedBlockSize<8>, public FixedKeyLength<8> /// \since Crypto++ 1.0 class DES : public DES_Info, public BlockCipherDocumentation { - /// \class Base /// \brief DES block cipher default operation class CRYPTOPP_NO_VTABLE Base : public BlockCipherImpl, public RawDES { @@ -61,20 +57,17 @@ public: typedef BlockCipherFinal Decryption; }; -/// \class DES_EDE2_Info /// \brief 2-key TripleDES block cipher information struct DES_EDE2_Info : public FixedBlockSize<8>, public FixedKeyLength<16> { CRYPTOPP_DLL static const char * CRYPTOPP_API StaticAlgorithmName() {return "DES-EDE2";} }; -/// \class DES_EDE2 /// \brief 2-key TripleDES block cipher /// \sa DES-EDE2 /// \since Crypto++ 1.0 class DES_EDE2 : public DES_EDE2_Info, public BlockCipherDocumentation { - /// \class Base /// \brief DES_EDE2 block cipher default operation class CRYPTOPP_DLL CRYPTOPP_NO_VTABLE Base : public BlockCipherImpl { @@ -91,20 +84,17 @@ public: typedef BlockCipherFinal Decryption; }; -/// \class DES_EDE3_Info /// \brief 3-key TripleDES block cipher information struct DES_EDE3_Info : public FixedBlockSize<8>, public FixedKeyLength<24> { CRYPTOPP_DLL static const char * CRYPTOPP_API StaticAlgorithmName() {return "DES-EDE3";} }; -/// \class DES_EDE3 /// \brief 3-key TripleDES block cipher /// \sa DES-EDE3 /// \since Crypto++ 1.0 class DES_EDE3 : public DES_EDE3_Info, public BlockCipherDocumentation { - /// \class Base /// \brief DES_EDE3 block cipher default operation class CRYPTOPP_DLL CRYPTOPP_NO_VTABLE Base : public BlockCipherImpl { @@ -121,20 +111,17 @@ public: typedef BlockCipherFinal Decryption; }; -/// \class DES_XEX3_Info /// \brief DESX block cipher information struct DES_XEX3_Info : public FixedBlockSize<8>, public FixedKeyLength<24> { CRYPTOPP_STATIC_CONSTEXPR const char* StaticAlgorithmName() {return "DES-XEX3";} }; -/// \class DES_XEX3 /// \brief DESX block cipher /// \sa DES-XEX3, AKA DESX /// \since Crypto++ 1.0 class DES_XEX3 : public DES_XEX3_Info, public BlockCipherDocumentation { - /// \class Base /// \brief DES_XEX3 block cipher default operation class CRYPTOPP_NO_VTABLE Base : public BlockCipherImpl { -- cgit v1.2.1