mirror of
https://github.com/shadps4-emu/ext-cryptopp.git
synced 2024-11-23 01:49:41 +00:00
Cleanup Doxygen directives
This commit is contained in:
parent
e1f2b69638
commit
d429318230
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
3
crc.h
@ -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
3
dll.h
@ -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
7
dmac.h
@ -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 ¶ms);
|
||||
|
3
ec2n.h
3
ec2n.h
@ -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
|
||||
|
||||
|
||||
|
2
misc.cpp
2
misc.cpp
@ -322,7 +322,7 @@ void AlignedDeallocate(void *p)
|
||||
#endif
|
||||
}
|
||||
|
||||
#endif
|
||||
#endif // CRYPTOPP_BOOL_ALIGN16
|
||||
|
||||
void * UnalignedAllocate(size_t size)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user