⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 validat3.cpp

📁 lots Elliptic curve cryptography codes. Use Visual c++ to compile
💻 CPP
📖 第 1 页 / 共 3 页
字号:
// validat3.cpp - written and placed in the public domain by Wei Dai#include "pch.h"#include "validate.h"#define CRYPTOPP_ENABLE_NAMESPACE_WEAK 1#include "smartptr.h"#include "crc.h"#include "adler32.h"#include "md2.h"#include "md4.h"#include "md5.h"#include "sha.h"#include "tiger.h"#include "ripemd.h"#include "hmac.h"#include "ttmac.h"#include "integer.h"#include "pwdbased.h"#include "filters.h"#include "hex.h"#include "files.h"#include <iostream>#include <iomanip>USING_NAMESPACE(CryptoPP)USING_NAMESPACE(std)struct HashTestTuple{	HashTestTuple(const char *input, const char *output, unsigned int repeatTimes=1)		: input((byte *)input), output((byte *)output), inputLen(strlen(input)), repeatTimes(repeatTimes) {}		HashTestTuple(const char *input, unsigned int inputLen, const char *output, unsigned int repeatTimes)		: input((byte *)input), output((byte *)output), inputLen(inputLen), repeatTimes(repeatTimes) {}	const byte *input, *output;	size_t inputLen;	unsigned int repeatTimes;};bool HashModuleTest(HashTransformation &md, const HashTestTuple *testSet, unsigned int testSetSize){	bool pass=true, fail;	SecByteBlock digest(md.DigestSize());	for (unsigned int i=0; i<testSetSize; i++)	{		unsigned j;		for (j=0; j<testSet[i].repeatTimes; j++)			md.Update(testSet[i].input, testSet[i].inputLen);		md.Final(digest);		fail = memcmp(digest, testSet[i].output, md.DigestSize()) != 0;		pass = pass && !fail;		cout << (fail ? "FAILED   " : "passed   ");		for (j=0; j<md.DigestSize(); j++)			cout << setw(2) << setfill('0') << hex << (int)digest[j];		cout << "   \"" << (char *)testSet[i].input << '\"';		if (testSet[i].repeatTimes != 1)			cout << " repeated " << dec << testSet[i].repeatTimes << " times";		cout  << endl;	}	return pass;}bool ValidateCRC32(){	HashTestTuple testSet[] = 	{		HashTestTuple("", "\x00\x00\x00\x00"),		HashTestTuple("a", "\x43\xbe\xb7\xe8"),		HashTestTuple("abc", "\xc2\x41\x24\x35"),		HashTestTuple("message digest", "\x7f\x9d\x15\x20"),		HashTestTuple("abcdefghijklmnopqrstuvwxyz", "\xbd\x50\x27\x4c"),		HashTestTuple("ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789", "\xd2\xe6\xc2\x1f"),		HashTestTuple("12345678901234567890123456789012345678901234567890123456789012345678901234567890", "\x72\x4a\xa9\x7c"),		HashTestTuple("123456789", "\x26\x39\xf4\xcb")	};	CRC32 crc;	cout << "\nCRC-32 validation suite running...\n\n";	return HashModuleTest(crc, testSet, sizeof(testSet)/sizeof(testSet[0]));}bool ValidateAdler32(){	HashTestTuple testSet[] = 	{		HashTestTuple("", "\x00\x00\x00\x01"),		HashTestTuple("a", "\x00\x62\x00\x62"),		HashTestTuple("abc", "\x02\x4d\x01\x27"),		HashTestTuple("message digest", "\x29\x75\x05\x86"),		HashTestTuple("abcdefghijklmnopqrstuvwxyz", "\x90\x86\x0b\x20"),		HashTestTuple("ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789", "\x8a\xdb\x15\x0c"),		HashTestTuple("aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa", "\x15\xd8\x70\xf9", 15625)	};	Adler32 md;	cout << "\nAdler-32 validation suite running...\n\n";	return HashModuleTest(md, testSet, sizeof(testSet)/sizeof(testSet[0]));}bool ValidateMD2(){	HashTestTuple testSet[] = 	{		HashTestTuple("", "\x83\x50\xe5\xa3\xe2\x4c\x15\x3d\xf2\x27\x5c\x9f\x80\x69\x27\x73"),		HashTestTuple("a", "\x32\xec\x01\xec\x4a\x6d\xac\x72\xc0\xab\x96\xfb\x34\xc0\xb5\xd1"),		HashTestTuple("abc", "\xda\x85\x3b\x0d\x3f\x88\xd9\x9b\x30\x28\x3a\x69\xe6\xde\xd6\xbb"),		HashTestTuple("message digest", "\xab\x4f\x49\x6b\xfb\x2a\x53\x0b\x21\x9f\xf3\x30\x31\xfe\x06\xb0"),		HashTestTuple("abcdefghijklmnopqrstuvwxyz", "\x4e\x8d\xdf\xf3\x65\x02\x92\xab\x5a\x41\x08\xc3\xaa\x47\x94\x0b"),		HashTestTuple("ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789", "\xda\x33\xde\xf2\xa4\x2d\xf1\x39\x75\x35\x28\x46\xc3\x03\x38\xcd"),		HashTestTuple("12345678901234567890123456789012345678901234567890123456789012345678901234567890", "\xd5\x97\x6f\x79\xd8\x3d\x3a\x0d\xc9\x80\x6c\x3c\x66\xf3\xef\xd8")	};	Weak::MD2 md2;	cout << "\nMD2 validation suite running...\n\n";	return HashModuleTest(md2, testSet, sizeof(testSet)/sizeof(testSet[0]));}bool ValidateMD4(){	HashTestTuple testSet[] = 	{		HashTestTuple("", "\x31\xd6\xcf\xe0\xd1\x6a\xe9\x31\xb7\x3c\x59\xd7\xe0\xc0\x89\xc0"),		HashTestTuple("a", "\xbd\xe5\x2c\xb3\x1d\xe3\x3e\x46\x24\x5e\x05\xfb\xdb\xd6\xfb\x24"),		HashTestTuple("abc", "\xa4\x48\x01\x7a\xaf\x21\xd8\x52\x5f\xc1\x0a\xe8\x7a\xa6\x72\x9d"),		HashTestTuple("message digest", "\xd9\x13\x0a\x81\x64\x54\x9f\xe8\x18\x87\x48\x06\xe1\xc7\x01\x4b"),		HashTestTuple("abcdefghijklmnopqrstuvwxyz", "\xd7\x9e\x1c\x30\x8a\xa5\xbb\xcd\xee\xa8\xed\x63\xdf\x41\x2d\xa9"),		HashTestTuple("ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789", "\x04\x3f\x85\x82\xf2\x41\xdb\x35\x1c\xe6\x27\xe1\x53\xe7\xf0\xe4"),		HashTestTuple("12345678901234567890123456789012345678901234567890123456789012345678901234567890", "\xe3\x3b\x4d\xdc\x9c\x38\xf2\x19\x9c\x3e\x7b\x16\x4f\xcc\x05\x36")	};	Weak::MD4 md4;	cout << "\nMD4 validation suite running...\n\n";	return HashModuleTest(md4, testSet, sizeof(testSet)/sizeof(testSet[0]));}bool ValidateMD5(){	HashTestTuple testSet[] = 	{		HashTestTuple("", "\xd4\x1d\x8c\xd9\x8f\x00\xb2\x04\xe9\x80\x09\x98\xec\xf8\x42\x7e"),		HashTestTuple("a", "\x0c\xc1\x75\xb9\xc0\xf1\xb6\xa8\x31\xc3\x99\xe2\x69\x77\x26\x61"),		HashTestTuple("abc", "\x90\x01\x50\x98\x3c\xd2\x4f\xb0\xd6\x96\x3f\x7d\x28\xe1\x7f\x72"),		HashTestTuple("message digest", "\xf9\x6b\x69\x7d\x7c\xb7\x93\x8d\x52\x5a\x2f\x31\xaa\xf1\x61\xd0"),		HashTestTuple("abcdefghijklmnopqrstuvwxyz", "\xc3\xfc\xd3\xd7\x61\x92\xe4\x00\x7d\xfb\x49\x6c\xca\x67\xe1\x3b"),		HashTestTuple("ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789", "\xd1\x74\xab\x98\xd2\x77\xd9\xf5\xa5\x61\x1c\x2c\x9f\x41\x9d\x9f"),		HashTestTuple("12345678901234567890123456789012345678901234567890123456789012345678901234567890", "\x57\xed\xf4\xa2\x2b\xe3\xc9\x55\xac\x49\xda\x2e\x21\x07\xb6\x7a")	};	Weak::MD5 md5;	cout << "\nMD5 validation suite running...\n\n";	return HashModuleTest(md5, testSet, sizeof(testSet)/sizeof(testSet[0]));}bool ValidateSHA(){	HashTestTuple testSet[] = 	{		HashTestTuple("abc", "\xA9\x99\x3E\x36\x47\x06\x81\x6A\xBA\x3E\x25\x71\x78\x50\xC2\x6C\x9C\xD0\xD8\x9D"),		HashTestTuple("abcdbcdecdefdefgefghfghighijhijkijkljklmklmnlmnomnopnopq", "\x84\x98\x3E\x44\x1C\x3B\xD2\x6E\xBA\xAE\x4A\xA1\xF9\x51\x29\xE5\xE5\x46\x70\xF1"),		HashTestTuple("aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa", "\x34\xAA\x97\x3C\xD4\xC4\xDA\xA4\xF6\x1E\xEB\x2B\xDB\xAD\x27\x31\x65\x34\x01\x6F", 15625)	};	SHA sha;	cout << "\nSHA validation suite running...\n\n";	return HashModuleTest(sha, testSet, sizeof(testSet)/sizeof(testSet[0]));}bool ValidateSHA2(){	HashTestTuple testSet256[] = 	{		HashTestTuple("abc", "\xba\x78\x16\xbf\x8f\x01\xcf\xea\x41\x41\x40\xde\x5d\xae\x22\x23\xb0\x03\x61\xa3\x96\x17\x7a\x9c\xb4\x10\xff\x61\xf2\x00\x15\xad"),		HashTestTuple("abcdbcdecdefdefgefghfghighijhijkijkljklmklmnlmnomnopnopq", "\x24\x8d\x6a\x61\xd2\x06\x38\xb8\xe5\xc0\x26\x93\x0c\x3e\x60\x39\xa3\x3c\xe4\x59\x64\xff\x21\x67\xf6\xec\xed\xd4\x19\xdb\x06\xc1"),	};	bool pass = true;	cout << "\nSHA-256 validation suite running...\n\n";	SHA256 sha256;	pass = HashModuleTest(sha256, testSet256, sizeof(testSet256)/sizeof(testSet256[0])) && pass;	cout << "\nSHA-384 validation suite running...\n\n";	HashTestTuple testSet384[] = 	{		HashTestTuple("abc", "\xcb\x00\x75\x3f\x45\xa3\x5e\x8b\xb5\xa0\x3d\x69\x9a\xc6\x50\x07\x27\x2c\x32\xab\x0e\xde\xd1\x63\x1a\x8b\x60\x5a\x43\xff\x5b\xed\x80\x86\x07\x2b\xa1\xe7\xcc\x23\x58\xba\xec\xa1\x34\xc8\x25\xa7"),		HashTestTuple("abcdefghbcdefghicdefghijdefghijkefghijklfghijklmghijklmnhijklmnoijklmnopjklmnopqklmnopqrlmnopqrsmnopqrstnopqrstu", "\x09\x33\x0c\x33\xf7\x11\x47\xe8\x3d\x19\x2f\xc7\x82\xcd\x1b\x47\x53\x11\x1b\x17\x3b\x3b\x05\xd2\x2f\xa0\x80\x86\xe3\xb0\xf7\x12\xfc\xc7\xc7\x1a\x55\x7e\x2d\xb9\x66\xc3\xe9\xfa\x91\x74\x60\x39"),	};	SHA384 sha384;	pass = HashModuleTest(sha384, testSet384, sizeof(testSet384)/sizeof(testSet384[0])) && pass;	cout << "\nSHA-512 validation suite running...\n\n";	HashTestTuple testSet512[] = 	{		HashTestTuple("abc", "\xdd\xaf\x35\xa1\x93\x61\x7a\xba\xcc\x41\x73\x49\xae\x20\x41\x31\x12\xe6\xfa\x4e\x89\xa9\x7e\xa2\x0a\x9e\xee\xe6\x4b\x55\xd3\x9a\x21\x92\x99\x2a\x27\x4f\xc1\xa8\x36\xba\x3c\x23\xa3\xfe\xeb\xbd\x45\x4d\x44\x23\x64\x3c\xe8\x0e\x2a\x9a\xc9\x4f\xa5\x4c\xa4\x9f"),		HashTestTuple("abcdefghbcdefghicdefghijdefghijkefghijklfghijklmghijklmnhijklmnoijklmnopjklmnopqklmnopqrlmnopqrsmnopqrstnopqrstu", "\x8e\x95\x9b\x75\xda\xe3\x13\xda\x8c\xf4\xf7\x28\x14\xfc\x14\x3f\x8f\x77\x79\xc6\xeb\x9f\x7f\xa1\x72\x99\xae\xad\xb6\x88\x90\x18\x50\x1d\x28\x9e\x49\x00\xf7\xe4\x33\x1b\x99\xde\xc4\xb5\x43\x3a\xc7\xd3\x29\xee\xb6\xdd\x26\x54\x5e\x96\xe5\x5b\x87\x4b\xe9\x09"),	};	SHA512 sha512;	pass = HashModuleTest(sha512, testSet512, sizeof(testSet512)/sizeof(testSet512[0])) && pass;	return pass;}bool ValidateTiger(){	cout << "\nTiger validation suite running...\n\n";	HashTestTuple testSet[] =

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -