Cleanup head notes and includes
parent
97e283c8fd
commit
fa513df380
|
|
@ -1,5 +1,6 @@
|
|||
// regtest1.cpp - originally written and placed in the public domain by Wei Dai
|
||||
// regtest.cpp split into 3 files due to OOM kills by JW in April 2017
|
||||
// regtest.cpp split into 3 files due to OOM kills by JW
|
||||
// in April 2017. A second split occured in July 2018.
|
||||
|
||||
#define CRYPTOPP_ENABLE_NAMESPACE_WEAK 1
|
||||
|
||||
|
|
|
|||
|
|
@ -1,5 +1,6 @@
|
|||
// regtest2.cpp - originally written and placed in the public domain by Wei Dai
|
||||
// regtest.cpp split into 3 files due to OOM kills by JW in April 2017
|
||||
// regtest.cpp split into 3 files due to OOM kills by JW
|
||||
// in April 2017. A second split occured in July 2018.
|
||||
|
||||
#define CRYPTOPP_ENABLE_NAMESPACE_WEAK 1
|
||||
|
||||
|
|
@ -81,6 +82,8 @@ void RegisterFactories2()
|
|||
// Stream ciphers
|
||||
void RegisterFactories3()
|
||||
{
|
||||
RegisterSymmetricCipherDefaultFactories<Weak::MARC4>();
|
||||
RegisterSymmetricCipherDefaultFactories<SEAL<> >();
|
||||
RegisterSymmetricCipherDefaultFactories<SEAL<LittleEndian> >();
|
||||
RegisterSymmetricCipherDefaultFactories<WAKE_OFB<LittleEndian> >();
|
||||
RegisterSymmetricCipherDefaultFactories<WAKE_OFB<BigEndian> >();
|
||||
|
|
@ -97,6 +100,4 @@ void RegisterFactories3()
|
|||
RegisterSymmetricCipherDefaultFactories<RabbitWithIV>();
|
||||
RegisterSymmetricCipherDefaultFactories<HC128>();
|
||||
RegisterSymmetricCipherDefaultFactories<HC256>();
|
||||
RegisterSymmetricCipherDefaultFactories<Weak::MARC4>();
|
||||
RegisterSymmetricCipherDefaultFactories<SEAL<> >();
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,5 +1,6 @@
|
|||
// regtest2.cpp - originally written and placed in the public domain by Wei Dai
|
||||
// regtest.cpp split into 3 files due to OOM kills by JW in April 2017
|
||||
// regtest3.cpp - originally written and placed in the public domain by Wei Dai
|
||||
// regtest.cpp split into 3 files due to OOM kills by JW
|
||||
// in April 2017. A second split occured in July 2018.
|
||||
|
||||
#define CRYPTOPP_ENABLE_NAMESPACE_WEAK 1
|
||||
|
||||
|
|
@ -10,6 +11,7 @@
|
|||
|
||||
#include "modes.h"
|
||||
#include "aria.h"
|
||||
#include "seed.h"
|
||||
#include "hight.h"
|
||||
#include "camellia.h"
|
||||
#include "shacal2.h"
|
||||
|
|
@ -37,8 +39,6 @@
|
|||
#include "rc5.h"
|
||||
#include "skipjack.h"
|
||||
#include "blowfish.h"
|
||||
#include "seed.h"
|
||||
#include "wake.h"
|
||||
|
||||
// Aggressive stack checking with VS2005 SP1 and above.
|
||||
#if (_MSC_FULL_VER >= 140050727)
|
||||
|
|
|
|||
|
|
@ -1,5 +1,6 @@
|
|||
// regtest.cpp - originally written and placed in the public domain by Wei Dai
|
||||
// regtest.cpp split into 3 files due to OOM kills by JW in April 2017
|
||||
// regtest4.cpp - originally written and placed in the public domain by Wei Dai
|
||||
// regtest.cpp split into 3 files due to OOM kills by JW
|
||||
// in April 2017. A second split occured in July 2018.
|
||||
|
||||
#define CRYPTOPP_ENABLE_NAMESPACE_WEAK 1
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue