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 --- skipjack.h | 5 ----- 1 file changed, 5 deletions(-) (limited to 'skipjack.h') diff --git a/skipjack.h b/skipjack.h index 01743224..0775cd7c 100644 --- a/skipjack.h +++ b/skipjack.h @@ -11,19 +11,16 @@ NAMESPACE_BEGIN(CryptoPP) -/// \class SKIPJACK_Info /// \brief SKIPJACK block cipher information struct SKIPJACK_Info : public FixedBlockSize<8>, public FixedKeyLength<10> { CRYPTOPP_DLL static const char * CRYPTOPP_API StaticAlgorithmName() {return "SKIPJACK";} }; -/// \class SKIPJACK /// \brief SKIPJACK block cipher /// \sa SKIPJACK class SKIPJACK : public SKIPJACK_Info, public BlockCipherDocumentation { - /// \class Base /// \brief SKIPJACK block cipher default operation class CRYPTOPP_DLL CRYPTOPP_NO_VTABLE Base : public BlockCipherImpl { @@ -37,7 +34,6 @@ class SKIPJACK : public SKIPJACK_Info, public BlockCipherDocumentation FixedSizeSecBlock tab; }; - /// \class Enc /// \brief SKIPJACK block cipher encryption operation class CRYPTOPP_DLL CRYPTOPP_NO_VTABLE Enc : public Base { @@ -48,7 +44,6 @@ class SKIPJACK : public SKIPJACK_Info, public BlockCipherDocumentation static const word32 Te[4][256]; }; - /// \class Dec /// \brief SKIPJACK block cipher decryption operation class CRYPTOPP_DLL CRYPTOPP_NO_VTABLE Dec : public Base { -- cgit v1.2.1