Cleanup Doxygen directives
parent
e1f2b69638
commit
d429318230
|
|
@ -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
|
||||||
|
|
|
||||||
|
|
@ -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
|
||||||
|
|
|
||||||
|
|
@ -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
3
crc.h
|
|
@ -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
3
dll.h
|
|
@ -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
7
dmac.h
|
|
@ -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 ¶ms);
|
void UncheckedSetKey(const byte *key, unsigned int length, const NameValuePairs ¶ms);
|
||||||
|
|
|
||||||
3
ec2n.h
3
ec2n.h
|
|
@ -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
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
2
misc.cpp
2
misc.cpp
|
|
@ -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
3
pch.h
|
|
@ -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
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue