validat1.cpp
来自「crypt++ 3.2版本」· C++ 代码 · 共 943 行 · 第 1/3 页
CPP
943 行
// validat1.cpp - written and placed in the public domain by Wei Dai
#include "pch.h"
#include "files.h"
#include "hex.h"
#include "cbc.h"
#include "cbcmac.h"
#include "dmac.h"
#include "idea.h"
#include "des.h"
#include "rc2.h"
#include "arc4.h"
#include "rc5.h"
#include "blowfish.h"
#include "diamond.h"
#include "wake.h"
#include "3way.h"
#include "safer.h"
#include "gost.h"
#include "shark.h"
#include "cast.h"
#include "square.h"
#include "seal.h"
#include "rc6.h"
#include "mars.h"
#include "rijndael.h"
#include "twofish.h"
#include "serpent.h"
#include "rng.h"
#include <stdlib.h>
#include <memory>
#include <iostream>
#include <iomanip>
#include "validate.h"
USING_NAMESPACE(CryptoPP)
USING_NAMESPACE(std)
bool ValidateAll()
{
bool pass=TestSettings();
pass=CRC32Validate() && pass;
pass=MD2Validate() && pass;
pass=MD5Validate() && pass;
pass=SHAValidate() && pass;
pass=HAVALValidate() && pass;
pass=TigerValidate() && pass;
pass=RIPEMDValidate() && pass;
pass=MD5MACValidate() && pass;
pass=HMACValidate() && pass;
pass=XMACCValidate() && pass;
pass=DESValidate() && pass;
pass=CipherModesValidate() && pass;
pass=IDEAValidate() && pass;
pass=SAFERValidate() && pass;
pass=RC2Validate() && pass;
pass=ARC4Validate() && pass;
pass=RC5Validate() && pass;
pass=BlowfishValidate() && pass;
pass=Diamond2Validate() && pass;
pass=ThreeWayValidate() && pass;
pass=GOSTValidate() && pass;
pass=SHARKValidate() && pass;
pass=SHARK2Validate() && pass;
pass=CASTValidate() && pass;
pass=SquareValidate() && pass;
pass=SEALValidate() && pass;
pass=RC6Validate() && pass;
pass=MARSValidate() && pass;
pass=RijndaelValidate() && pass;
pass=TwofishValidate() && pass;
pass=SerpentValidate() && pass;
pass=BBSValidate() && pass;
pass=DHValidate() && pass;
pass=MQVValidate() && pass;
pass=RSAValidate() && pass;
pass=ElGamalValidate() && pass;
pass=NRValidate() && pass;
pass=DSAValidate() && pass;
pass=LUCValidate() && pass;
pass=LUCDIFValidate() && pass;
pass=LUCELGValidate() && pass;
pass=RabinValidate() && pass;
pass=RWValidate() && pass;
pass=BlumGoldwasserValidate() && pass;
pass=ECPValidate() && pass;
pass=EC2NValidate() && pass;
pass=ECDSAValidate() && pass;
if (pass)
cout << "\nAll tests passed!\n";
else
cout << "\nOops! Not all tests passed.\n";
return pass;
}
bool TestSettings()
{
bool pass = true;
cout << "\nTesting Settings...\n\n";
if (*(word32 *)"\x01\x02\x03\x04" == 0x04030201L)
{
#ifdef IS_LITTLE_ENDIAN
cout << "passed: ";
#else
cout << "FAILED: ";
pass = false;
#endif
cout << "Your machine is little endian.\n";
}
else if (*(word32 *)"\x01\x02\x03\x04" == 0x01020304L)
{
#ifndef IS_LITTLE_ENDIAN
cout << "passed: ";
#else
cout << "FAILED: ";
pass = false;
#endif
cout << "Your machine is big endian.\n";
}
else
{
cout << "FAILED: Your machine is neither big endian nor little endian.\n";
pass = false;
}
if (sizeof(byte) == 1)
cout << "passed: ";
else
{
cout << "FAILED: ";
pass = false;
}
cout << "sizeof(byte) == " << sizeof(byte) << endl;
if (sizeof(word16) == 2)
cout << "passed: ";
else
{
cout << "FAILED: ";
pass = false;
}
cout << "sizeof(word16) == " << sizeof(word16) << endl;
if (sizeof(word32) == 4)
cout << "passed: ";
else
{
cout << "FAILED: ";
pass = false;
}
cout << "sizeof(word32) == " << sizeof(word32) << endl;
#ifdef WORD64_AVAILABLE
if (sizeof(word64) == 8)
cout << "passed: ";
else
{
cout << "FAILED: ";
pass = false;
}
cout << "sizeof(word64) == " << sizeof(word64) << endl;
#else
if (sizeof(dword) >= 8)
{
cout << "FAILED: sizeof(dword) >= 8, but WORD64_AVAILABLE not defined" << endl;
pass = false;
}
else
cout << "passed: word64 not available" << endl;
#endif
if (sizeof(dword) == 2*sizeof(word))
cout << "passed: ";
else
{
cout << "FAILED: ";
pass = false;
}
cout << "sizeof(word) == " << sizeof(word) << ", sizeof(dword) == " << sizeof(dword) << endl;
dword test = (dword(1)<<WORD_BITS) + 2;
if (HIGH_WORD(test) == 1 && LOW_WORD(test) == 2)
cout << "passed: ";
else
{
cout << "FAILED: ";
pass = false;
}
cout << "HIGH_WORD() and LOW_WORD() macros\n";
if (!pass)
{
cout << "Some critical setting in config.h is in error. Please fix it and recompile." << endl;
abort();
}
return pass;
}
// VC50 workaround
typedef auto_ptr<BlockTransformation> apbt;
class CipherFactory
{
public:
virtual unsigned int BlockSize() const =0;
virtual unsigned int KeyLength() const =0;
virtual apbt NewEncryption(const byte *key) const =0;
virtual apbt NewDecryption(const byte *key) const =0;
};
template <class E, class D> class FixedRoundsCipherFactory : public CipherFactory
{
public:
FixedRoundsCipherFactory(unsigned int keylen=0) : m_keylen(keylen?keylen:E::KEYLENGTH)
{assert(E::KeyLength(m_keylen)==m_keylen && D::KeyLength(m_keylen)==m_keylen);}
unsigned int BlockSize() const {return E::BLOCKSIZE;}
unsigned int KeyLength() const {return m_keylen;}
apbt NewEncryption(const byte *key) const
{return apbt(new E(key, m_keylen));}
apbt NewDecryption(const byte *key) const
{return apbt(new D(key, m_keylen));}
unsigned int m_keylen;
};
template <class E, class D> class VariableRoundsCipherFactory : public CipherFactory
{
public:
VariableRoundsCipherFactory(unsigned int keylen=0, unsigned int rounds=0) : m_keylen(keylen?keylen:E::KEYLENGTH), m_rounds(rounds?rounds:E::ROUNDS)
{assert(E::KeyLength(m_keylen)==m_keylen && D::KeyLength(m_keylen)==m_keylen);}
unsigned int BlockSize() const {return E::BLOCKSIZE;}
unsigned int KeyLength() const {return m_keylen;}
apbt NewEncryption(const byte *key) const
{return apbt(new E(key, m_keylen, m_rounds));}
apbt NewDecryption(const byte *key) const
{return apbt(new D(key, m_keylen, m_rounds));}
unsigned int m_keylen, m_rounds;
};
bool BlockTransformationTest(const CipherFactory &cg, BufferedTransformation &valdata, unsigned int tuples = 0xffff)
{
HexEncoder output(new FileSink(cout));
SecByteBlock plain(cg.BlockSize()), cipher(cg.BlockSize()), out(cg.BlockSize()), outplain(cg.BlockSize());
SecByteBlock key(cg.KeyLength());
bool pass=true, fail;
while (valdata.MaxRetrieveable() && tuples--)
{
valdata.Get(key, cg.KeyLength());
valdata.Get(plain, cg.BlockSize());
valdata.Get(cipher, cg.BlockSize());
apbt trans = cg.NewEncryption(key);
trans->ProcessBlock(plain, out);
fail = memcmp(out, cipher, cg.BlockSize()) != 0;
trans = (apbt&) cg.NewDecryption(key);
trans->ProcessBlock(out, outplain);
fail=fail || memcmp(outplain, plain, cg.BlockSize());
pass = pass && !fail;
cout << (fail ? "FAILED " : "passed ");
output.Put(key, cg.KeyLength());
cout << " ";
output.Put(outplain, cg.BlockSize());
cout << " ";
output.Put(out, cg.BlockSize());
cout << endl;
}
return pass;
}
class FilterTester : public Sink
{
public:
FilterTester(const byte *validOutput, unsigned int outputLen)
: validOutput(validOutput), outputLen(outputLen), counter(0), fail(false) {}
void Put(byte inByte)
{
if (counter >= outputLen || validOutput[counter] != inByte)
fail = true;
counter++;
}
void Put(const byte *inString, unsigned int len)
{
while (len--)
Put(*inString++);
}
void InputFinished()
{
if (counter != outputLen)
fail = true;
}
unsigned int Get(byte &outByte)
{
outByte = !fail;
return 1;
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?