Cleanup head notes and includes

pull/696/head
Jeffrey Walton 2018-07-27 21:18:51 -04:00
parent 97e283c8fd
commit fa513df380
No known key found for this signature in database
GPG Key ID: B36AB348921B1838
4 changed files with 13 additions and 10 deletions

View File

@ -1,5 +1,6 @@
// regtest1.cpp - originally written and placed in the public domain by Wei Dai // 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 #define CRYPTOPP_ENABLE_NAMESPACE_WEAK 1

View File

@ -1,5 +1,6 @@
// regtest2.cpp - originally written and placed in the public domain by Wei Dai // 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 #define CRYPTOPP_ENABLE_NAMESPACE_WEAK 1
@ -81,6 +82,8 @@ void RegisterFactories2()
// Stream ciphers // Stream ciphers
void RegisterFactories3() void RegisterFactories3()
{ {
RegisterSymmetricCipherDefaultFactories<Weak::MARC4>();
RegisterSymmetricCipherDefaultFactories<SEAL<> >();
RegisterSymmetricCipherDefaultFactories<SEAL<LittleEndian> >(); RegisterSymmetricCipherDefaultFactories<SEAL<LittleEndian> >();
RegisterSymmetricCipherDefaultFactories<WAKE_OFB<LittleEndian> >(); RegisterSymmetricCipherDefaultFactories<WAKE_OFB<LittleEndian> >();
RegisterSymmetricCipherDefaultFactories<WAKE_OFB<BigEndian> >(); RegisterSymmetricCipherDefaultFactories<WAKE_OFB<BigEndian> >();
@ -97,6 +100,4 @@ void RegisterFactories3()
RegisterSymmetricCipherDefaultFactories<RabbitWithIV>(); RegisterSymmetricCipherDefaultFactories<RabbitWithIV>();
RegisterSymmetricCipherDefaultFactories<HC128>(); RegisterSymmetricCipherDefaultFactories<HC128>();
RegisterSymmetricCipherDefaultFactories<HC256>(); RegisterSymmetricCipherDefaultFactories<HC256>();
RegisterSymmetricCipherDefaultFactories<Weak::MARC4>();
RegisterSymmetricCipherDefaultFactories<SEAL<> >();
} }

View File

@ -1,5 +1,6 @@
// regtest2.cpp - originally written and placed in the public domain by Wei Dai // 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 // 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 #define CRYPTOPP_ENABLE_NAMESPACE_WEAK 1
@ -10,6 +11,7 @@
#include "modes.h" #include "modes.h"
#include "aria.h" #include "aria.h"
#include "seed.h"
#include "hight.h" #include "hight.h"
#include "camellia.h" #include "camellia.h"
#include "shacal2.h" #include "shacal2.h"
@ -37,8 +39,6 @@
#include "rc5.h" #include "rc5.h"
#include "skipjack.h" #include "skipjack.h"
#include "blowfish.h" #include "blowfish.h"
#include "seed.h"
#include "wake.h"
// Aggressive stack checking with VS2005 SP1 and above. // Aggressive stack checking with VS2005 SP1 and above.
#if (_MSC_FULL_VER >= 140050727) #if (_MSC_FULL_VER >= 140050727)

View File

@ -1,5 +1,6 @@
// regtest.cpp - originally written and placed in the public domain by Wei Dai // 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 // 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 #define CRYPTOPP_ENABLE_NAMESPACE_WEAK 1