Cleanup Doxygen directives

This commit is contained in:
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
/// \file
/// \headerfile adler32.h
/// \file adler32.h
/// \brief Class file for ADLER-32 checksum calculations
#ifndef CRYPTOPP_ADLER32_H

View File

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

View File

@ -1,7 +1,6 @@
// channels.h - originally written and placed in the public domain by Wei Dai
/// \file
/// \headerfile channels.h
/// \file channels.h
/// \brief Classes for multiple named channels
#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
/// \file
/// \headerfile crc.h
/// \file crc.h
/// \brief Classes for CRC-32 and CRC-32C checksum algorithm
#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
/// \file
/// \headerfile dll.h
/// \file dll.h
/// \brief Functions and definitions required for building the FIPS-140 DLL on Windows
#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
/// \file
/// \headerfile dmac.h
/// \file dmac.h
/// \brief Classes for DMAC message authentication code
#ifndef CRYPTOPP_DMAC_H
@ -17,10 +16,10 @@ template <class T>
class CRYPTOPP_NO_VTABLE DMAC_Base : public SameKeyLengthAs<T>, public MessageAuthenticationCode
{
public:
CRYPTOPP_CONSTANT(DIGESTSIZE=T::BLOCKSIZE)
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) {}
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
/// \file
/// \headerfile ec2n.h
/// \file ec2n.h
/// \brief Classes for Elliptic Curves over binary fields

View File

@ -322,7 +322,7 @@ void AlignedDeallocate(void *p)
#endif
}
#endif
#endif // CRYPTOPP_BOOL_ALIGN16
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
/// \headerfile pch.h
/// \file pch.h
/// \brief Precompiled header file
/// \details The precompiled header files are used Windows.
#ifndef CRYPTOPP_PCH_H
#define CRYPTOPP_PCH_H