Cleanup Doxygen directives

pull/574/head
Jeffrey Walton 2018-01-22 09:53:49 -05:00
parent e1f2b69638
commit d429318230
No known key found for this signature in database
GPG Key ID: B36AB348921B1838
9 changed files with 12 additions and 18 deletions

View File

@ -1,7 +1,6 @@
// adler32.h - originally written and placed in the public domain by Wei Dai // adler32.h - originally written and placed in the public domain by Wei Dai
/// \file /// \file adler32.h
/// \headerfile adler32.h
/// \brief Class file for ADLER-32 checksum calculations /// \brief Class file for ADLER-32 checksum calculations
#ifndef CRYPTOPP_ADLER32_H #ifndef CRYPTOPP_ADLER32_H

View File

@ -1,7 +1,6 @@
// blumshub.h - originally written and placed in the public domain by Wei Dai // blumshub.h - originally written and placed in the public domain by Wei Dai
/// \file /// \file blumshub.h
/// \headerfile blumshub.h
/// \brief Classes for Blum Blum Shub generator /// \brief Classes for Blum Blum Shub generator
#ifndef CRYPTOPP_BLUMSHUB_H #ifndef CRYPTOPP_BLUMSHUB_H

View File

@ -1,7 +1,6 @@
// channels.h - originally written and placed in the public domain by Wei Dai // channels.h - originally written and placed in the public domain by Wei Dai
/// \file /// \file channels.h
/// \headerfile channels.h
/// \brief Classes for multiple named channels /// \brief Classes for multiple named channels
#ifndef CRYPTOPP_CHANNELS_H #ifndef CRYPTOPP_CHANNELS_H

3
crc.h
View File

@ -1,7 +1,6 @@
// crc.h - originally written and placed in the public domain by Wei Dai // crc.h - originally written and placed in the public domain by Wei Dai
/// \file /// \file crc.h
/// \headerfile crc.h
/// \brief Classes for CRC-32 and CRC-32C checksum algorithm /// \brief Classes for CRC-32 and CRC-32C checksum algorithm
#ifndef CRYPTOPP_CRC32_H #ifndef CRYPTOPP_CRC32_H

3
dll.h
View File

@ -1,7 +1,6 @@
// dll.h - originally written and placed in the public domain by Wei Dai // dll.h - originally written and placed in the public domain by Wei Dai
/// \file /// \file dll.h
/// \headerfile dll.h
/// \brief Functions and definitions required for building the FIPS-140 DLL on Windows /// \brief Functions and definitions required for building the FIPS-140 DLL on Windows
#ifndef CRYPTOPP_DLL_H #ifndef CRYPTOPP_DLL_H

7
dmac.h
View File

@ -1,7 +1,6 @@
// dmac.h - originally written and placed in the public domain by Wei Dai // dmac.h - originally written and placed in the public domain by Wei Dai
/// \file /// \file dmac.h
/// \headerfile dmac.h
/// \brief Classes for DMAC message authentication code /// \brief Classes for DMAC message authentication code
#ifndef CRYPTOPP_DMAC_H #ifndef CRYPTOPP_DMAC_H
@ -17,10 +16,10 @@ template <class T>
class CRYPTOPP_NO_VTABLE DMAC_Base : public SameKeyLengthAs<T>, public MessageAuthenticationCode class CRYPTOPP_NO_VTABLE DMAC_Base : public SameKeyLengthAs<T>, public MessageAuthenticationCode
{ {
public: public:
CRYPTOPP_CONSTANT(DIGESTSIZE=T::BLOCKSIZE)
static std::string StaticAlgorithmName() {return std::string("DMAC(") + T::StaticAlgorithmName() + ")";} static std::string StaticAlgorithmName() {return std::string("DMAC(") + T::StaticAlgorithmName() + ")";}
CRYPTOPP_CONSTANT(DIGESTSIZE=T::BLOCKSIZE) virtual~DMAC_Base() {}
DMAC_Base() : m_subkeylength(0), m_counter(0) {} DMAC_Base() : m_subkeylength(0), m_counter(0) {}
void UncheckedSetKey(const byte *key, unsigned int length, const NameValuePairs &params); void UncheckedSetKey(const byte *key, unsigned int length, const NameValuePairs &params);

3
ec2n.h
View File

@ -1,7 +1,6 @@
// ec2n.h - originally written and placed in the public domain by Wei Dai // ec2n.h - originally written and placed in the public domain by Wei Dai
/// \file /// \file ec2n.h
/// \headerfile ec2n.h
/// \brief Classes for Elliptic Curves over binary fields /// \brief Classes for Elliptic Curves over binary fields

View File

@ -322,7 +322,7 @@ void AlignedDeallocate(void *p)
#endif #endif
} }
#endif #endif // CRYPTOPP_BOOL_ALIGN16
void * UnalignedAllocate(size_t size) void * UnalignedAllocate(size_t size)
{ {

3
pch.h
View File

@ -1,7 +1,8 @@
// pch.h - originally written and placed in the public domain by Wei Dai // pch.h - originally written and placed in the public domain by Wei Dai
/// \headerfile pch.h /// \file pch.h
/// \brief Precompiled header file /// \brief Precompiled header file
/// \details The precompiled header files are used Windows.
#ifndef CRYPTOPP_PCH_H #ifndef CRYPTOPP_PCH_H
#define CRYPTOPP_PCH_H #define CRYPTOPP_PCH_H