2017-03-08 22:15:16 +00:00
|
|
|
// validate.h - originally written and placed in the public domain by Wei Dai
|
|
|
|
// CryptoPP::Test namespace added by JW in February 2017
|
|
|
|
|
2015-11-05 06:59:46 +00:00
|
|
|
#ifndef CRYPTOPP_VALIDATE_H
|
|
|
|
#define CRYPTOPP_VALIDATE_H
|
|
|
|
|
|
|
|
#include "cryptlib.h"
|
2017-05-20 03:29:59 +00:00
|
|
|
#include "misc.h"
|
2018-07-28 18:57:12 +00:00
|
|
|
#include "files.h"
|
|
|
|
#include "argnames.h"
|
|
|
|
#include "algparam.h"
|
|
|
|
#include "hex.h"
|
2017-03-08 22:15:16 +00:00
|
|
|
|
2015-12-29 12:16:44 +00:00
|
|
|
#include <iostream>
|
2017-05-20 08:09:17 +00:00
|
|
|
#include <sstream>
|
2015-12-29 12:16:44 +00:00
|
|
|
#include <iomanip>
|
2017-03-08 22:15:16 +00:00
|
|
|
#include <ctime>
|
|
|
|
#include <cctype>
|
2015-11-05 06:59:46 +00:00
|
|
|
|
2017-02-21 07:03:29 +00:00
|
|
|
NAMESPACE_BEGIN(CryptoPP)
|
|
|
|
NAMESPACE_BEGIN(Test)
|
|
|
|
|
2019-01-02 08:30:49 +00:00
|
|
|
// A hint to help locate TestData/ and TestVectors/ after install. Due to
|
|
|
|
// execve the path can be malicious. If the path is ficticous then we move
|
|
|
|
// onto the next potential path. Also note we only read from the path; we
|
|
|
|
// never write through it. Storage for the string is in test.cpp.
|
|
|
|
extern std::string g_argvPathHint;
|
|
|
|
|
2015-11-05 06:59:46 +00:00
|
|
|
bool ValidateAll(bool thorough);
|
|
|
|
bool TestSettings();
|
|
|
|
bool TestOS_RNG();
|
2017-02-07 13:51:58 +00:00
|
|
|
// bool TestSecRandom();
|
2017-05-10 05:28:52 +00:00
|
|
|
bool TestRandomPool();
|
2017-05-10 07:50:32 +00:00
|
|
|
#if !defined(NO_OS_DEPENDENCE)
|
2016-01-03 17:53:46 +00:00
|
|
|
bool TestAutoSeededX917();
|
2017-05-10 07:50:32 +00:00
|
|
|
#endif
|
2017-05-29 04:43:20 +00:00
|
|
|
#if (CRYPTOPP_BOOL_X86 || CRYPTOPP_BOOL_X32 || CRYPTOPP_BOOL_X64)
|
2015-11-05 06:59:46 +00:00
|
|
|
bool TestRDRAND();
|
|
|
|
bool TestRDSEED();
|
2017-08-19 19:41:45 +00:00
|
|
|
bool TestPadlockRNG();
|
2017-05-29 04:43:20 +00:00
|
|
|
#endif
|
2018-11-27 07:54:26 +00:00
|
|
|
#if (CRYPTOPP_BOOL_PPC32 || CRYPTOPP_BOOL_PPC64)
|
|
|
|
bool TestDARN();
|
|
|
|
#endif
|
2015-11-18 20:32:28 +00:00
|
|
|
bool ValidateBaseCode();
|
2018-01-12 23:59:48 +00:00
|
|
|
bool ValidateEncoder();
|
2015-11-05 06:59:46 +00:00
|
|
|
bool ValidateCRC32();
|
2016-04-24 17:24:45 +00:00
|
|
|
bool ValidateCRC32C();
|
2015-11-05 06:59:46 +00:00
|
|
|
bool ValidateAdler32();
|
|
|
|
bool ValidateMD2();
|
|
|
|
bool ValidateMD4();
|
|
|
|
bool ValidateMD5();
|
|
|
|
bool ValidateSHA();
|
|
|
|
bool ValidateSHA2();
|
2019-02-13 16:31:18 +00:00
|
|
|
bool ValidateSHA3();
|
|
|
|
bool ValidateSHAKE(); // output <= r, where r is blocksize
|
|
|
|
bool ValidateSHAKE_XOF(); // output > r, needs hand crafted tests
|
|
|
|
bool ValidateKeccak();
|
2015-11-05 06:59:46 +00:00
|
|
|
bool ValidateTiger();
|
|
|
|
bool ValidateRIPEMD();
|
|
|
|
bool ValidatePanama();
|
|
|
|
bool ValidateWhirlpool();
|
2016-11-27 20:31:50 +00:00
|
|
|
|
2017-11-24 04:19:09 +00:00
|
|
|
bool ValidateSM3();
|
2016-04-18 06:39:10 +00:00
|
|
|
bool ValidateBLAKE2s();
|
|
|
|
bool ValidateBLAKE2b();
|
2016-12-17 08:58:36 +00:00
|
|
|
bool ValidatePoly1305();
|
|
|
|
bool ValidateSipHash();
|
2015-11-05 06:59:46 +00:00
|
|
|
|
|
|
|
bool ValidateHMAC();
|
|
|
|
bool ValidateTTMAC();
|
|
|
|
|
|
|
|
bool ValidateCipherModes();
|
|
|
|
bool ValidatePBKDF();
|
|
|
|
bool ValidateHKDF();
|
2018-04-01 00:09:38 +00:00
|
|
|
bool ValidateScrypt();
|
2015-11-05 06:59:46 +00:00
|
|
|
|
|
|
|
bool ValidateDES();
|
|
|
|
bool ValidateIDEA();
|
|
|
|
bool ValidateSAFER();
|
|
|
|
bool ValidateRC2();
|
|
|
|
bool ValidateARC4();
|
|
|
|
|
|
|
|
bool ValidateRC5();
|
|
|
|
bool ValidateBlowfish();
|
2019-09-30 00:18:56 +00:00
|
|
|
bool ValidateBlowfishCompat();
|
2015-11-05 06:59:46 +00:00
|
|
|
bool ValidateThreeWay();
|
|
|
|
bool ValidateGOST();
|
|
|
|
bool ValidateSHARK();
|
|
|
|
bool ValidateSEAL();
|
|
|
|
bool ValidateCAST();
|
|
|
|
bool ValidateSquare();
|
|
|
|
bool ValidateSKIPJACK();
|
|
|
|
bool ValidateRC6();
|
|
|
|
bool ValidateMARS();
|
|
|
|
bool ValidateRijndael();
|
|
|
|
bool ValidateTwofish();
|
|
|
|
bool ValidateSerpent();
|
|
|
|
bool ValidateSHACAL2();
|
2017-04-10 14:52:40 +00:00
|
|
|
bool ValidateARIA();
|
2018-06-30 12:25:32 +00:00
|
|
|
bool ValidateSIMECK();
|
2018-06-18 03:24:47 +00:00
|
|
|
bool ValidateCHAM();
|
2018-06-24 04:54:16 +00:00
|
|
|
bool ValidateHIGHT();
|
2018-06-18 02:36:41 +00:00
|
|
|
bool ValidateLEA();
|
2018-10-14 14:45:46 +00:00
|
|
|
bool ValidateSIMON();
|
|
|
|
bool ValidateSPECK();
|
2015-11-05 06:59:46 +00:00
|
|
|
bool ValidateCamellia();
|
2018-07-05 04:29:07 +00:00
|
|
|
|
|
|
|
bool ValidateHC128();
|
2018-07-05 10:43:04 +00:00
|
|
|
bool ValidateHC256();
|
2018-07-04 07:47:28 +00:00
|
|
|
bool ValidateRabbit();
|
2018-07-05 04:29:07 +00:00
|
|
|
bool ValidateSalsa();
|
2018-11-09 03:08:59 +00:00
|
|
|
bool ValidateChaCha();
|
2019-01-24 14:36:05 +00:00
|
|
|
bool ValidateChaChaTLS();
|
2015-11-05 06:59:46 +00:00
|
|
|
bool ValidateSosemanuk();
|
2018-07-05 04:29:07 +00:00
|
|
|
|
2015-11-05 06:59:46 +00:00
|
|
|
bool ValidateVMAC();
|
|
|
|
bool ValidateCCM();
|
|
|
|
bool ValidateGCM();
|
2019-10-12 11:14:38 +00:00
|
|
|
bool ValidateXTS();
|
2015-11-05 06:59:46 +00:00
|
|
|
bool ValidateCMAC();
|
|
|
|
|
|
|
|
bool ValidateBBS();
|
|
|
|
bool ValidateDH();
|
|
|
|
bool ValidateMQV();
|
2016-07-04 17:05:38 +00:00
|
|
|
bool ValidateHMQV();
|
|
|
|
bool ValidateFHMQV();
|
2015-11-05 06:59:46 +00:00
|
|
|
bool ValidateRSA();
|
|
|
|
bool ValidateElGamal();
|
|
|
|
bool ValidateDLIES();
|
|
|
|
bool ValidateNR();
|
|
|
|
bool ValidateDSA(bool thorough);
|
|
|
|
bool ValidateLUC();
|
|
|
|
bool ValidateLUC_DL();
|
|
|
|
bool ValidateLUC_DH();
|
|
|
|
bool ValidateXTR_DH();
|
|
|
|
bool ValidateRabin();
|
|
|
|
bool ValidateRW();
|
|
|
|
bool ValidateECP();
|
|
|
|
bool ValidateEC2N();
|
|
|
|
bool ValidateECDSA();
|
2018-01-11 01:18:15 +00:00
|
|
|
bool ValidateECDSA_RFC6979();
|
2017-11-25 08:27:07 +00:00
|
|
|
bool ValidateECGDSA(bool thorough);
|
2015-11-05 06:59:46 +00:00
|
|
|
bool ValidateESIGN();
|
|
|
|
|
2017-02-07 13:51:58 +00:00
|
|
|
bool ValidateHashDRBG();
|
|
|
|
bool ValidateHmacDRBG();
|
|
|
|
|
2018-12-24 22:17:32 +00:00
|
|
|
bool TestX25519();
|
|
|
|
bool TestEd25519();
|
|
|
|
bool ValidateX25519();
|
|
|
|
bool ValidateEd25519();
|
Add interface to TweetNaCl library (#566)
TweetNaCl is a compact reimplementation of the NaCl library by Daniel J. Bernstein, Bernard van Gastel, Wesley Janssen, Tanja Lange, Peter Schwabe and Sjaak Smetsers. The library is less than 20 KB in size and provides 25 of the NaCl library functions.
The compact library uses curve25519, XSalsa20, Poly1305 and SHA-512 as default primitives, and includes both x25519 key exchange and ed25519 signatures. The complete list of functions can be found in TweetNaCl: A crypto library in 100 tweets (20140917), Table 1, page 5.
Crypto++ retained the function names and signatures but switched to data types provided by <stdint.h> to promote interoperability with Crypto++ and avoid size problems on platforms like Cygwin. For example, NaCl typdef'd u64 as an unsigned long long, but Cygwin, MinGW and MSYS are LP64 systems (not LLP64 systems). In addition, Crypto++ was missing NaCl's signed 64-bit integer i64.
Crypto++ enforces the 0-key restriction due to small points. The TweetNaCl library allowed the 0-keys to small points. Also see RFC 7748, Elliptic Curves for Security, Section 6.
TweetNaCl is well written but not well optimized. It runs 2x to 3x slower than optimized routines from libsodium. However, the library is still 2x to 4x faster than the algorithms NaCl was designed to replace.
The Crypto++ wrapper for TweetNaCl requires OS features. That is, NO_OS_DEPENDENCE cannot be defined. It is due to TweetNaCl's internal function randombytes. Crypto++ used DefaultAutoSeededRNG within randombytes, so OS integration must be enabled. You can use another generator like RDRAND to avoid the restriction.
2018-01-18 03:02:09 +00:00
|
|
|
bool ValidateNaCl();
|
|
|
|
|
2017-05-06 03:16:28 +00:00
|
|
|
// If CRYPTOPP_DEBUG or CRYPTOPP_COVERAGE is in effect, then perform additional tests
|
2019-07-05 23:10:01 +00:00
|
|
|
#if (defined(CRYPTOPP_DEBUG) || defined(CRYPTOPP_COVERAGE)) && !defined(CRYPTOPP_IMPORTS)
|
2017-05-06 03:16:28 +00:00
|
|
|
# define CRYPTOPP_EXTENDED_VALIDATION 1
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if defined(CRYPTOPP_EXTENDED_VALIDATION)
|
2016-12-24 09:56:34 +00:00
|
|
|
// http://github.com/weidai11/cryptopp/issues/92
|
2015-12-28 05:11:52 +00:00
|
|
|
bool TestSecBlock();
|
2016-12-24 09:56:34 +00:00
|
|
|
// http://github.com/weidai11/cryptopp/issues/64
|
2015-11-18 20:32:28 +00:00
|
|
|
bool TestPolynomialMod2();
|
2016-12-24 09:56:34 +00:00
|
|
|
// http://github.com/weidai11/cryptopp/issues/336
|
2016-12-07 01:56:57 +00:00
|
|
|
bool TestIntegerBitops();
|
2018-03-25 04:43:21 +00:00
|
|
|
// http://github.com/weidai11/cryptopp/issues/602
|
|
|
|
bool TestIntegerOps();
|
2017-01-11 03:09:38 +00:00
|
|
|
// http://github.com/weidai11/cryptopp/issues/360
|
|
|
|
bool TestRounding();
|
2016-12-24 09:56:34 +00:00
|
|
|
// http://github.com/weidai11/cryptopp/issues/242
|
2016-08-21 07:18:26 +00:00
|
|
|
bool TestHuffmanCodes();
|
2016-12-24 09:56:34 +00:00
|
|
|
// http://github.com/weidai11/cryptopp/issues/346
|
|
|
|
bool TestASN1Parse();
|
2018-09-09 01:52:14 +00:00
|
|
|
// https://github.com/weidai11/cryptopp/pull/334
|
|
|
|
bool TestStringSink();
|
2017-05-05 21:21:08 +00:00
|
|
|
// Additional tests due to no coverage
|
2017-05-06 23:20:57 +00:00
|
|
|
bool TestCompressors();
|
|
|
|
bool TestEncryptors();
|
2017-05-05 21:21:08 +00:00
|
|
|
bool TestMersenne();
|
2017-05-09 22:44:45 +00:00
|
|
|
bool TestSharing();
|
2018-08-07 02:19:59 +00:00
|
|
|
# if defined(CRYPTOPP_ALTIVEC_AVAILABLE)
|
|
|
|
bool TestAltivecOps();
|
|
|
|
# endif
|
2015-11-18 20:32:28 +00:00
|
|
|
#endif
|
|
|
|
|
2018-07-30 00:30:19 +00:00
|
|
|
class FixedRNG : public RandomNumberGenerator
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
FixedRNG(BufferedTransformation &source) : m_source(source) {}
|
|
|
|
|
|
|
|
void GenerateBlock(byte *output, size_t size)
|
|
|
|
{
|
|
|
|
m_source.Get(output, size);
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
BufferedTransformation &m_source;
|
|
|
|
};
|
|
|
|
|
2018-03-25 04:43:21 +00:00
|
|
|
// Safer functions on Windows for C&A, http://github.com/weidai11/cryptopp/issues/55
|
2017-05-16 07:52:03 +00:00
|
|
|
inline std::string TimeToString(const time_t& t)
|
2017-03-08 22:15:16 +00:00
|
|
|
{
|
|
|
|
#if (CRYPTOPP_MSC_VERSION >= 1400)
|
2019-10-14 13:23:53 +00:00
|
|
|
tm localTime;
|
2017-03-08 22:15:16 +00:00
|
|
|
char timeBuf[64];
|
|
|
|
errno_t err;
|
|
|
|
|
|
|
|
err = ::localtime_s(&localTime, &t);
|
|
|
|
CRYPTOPP_ASSERT(err == 0);
|
|
|
|
err = ::asctime_s(timeBuf, sizeof(timeBuf), &localTime);
|
|
|
|
CRYPTOPP_ASSERT(err == 0);
|
|
|
|
|
2019-06-03 09:41:58 +00:00
|
|
|
std::string str(err == 0 ? timeBuf : "");
|
2020-01-27 07:13:22 +00:00
|
|
|
#elif defined(__MINGW32__) || defined(__MINGW64__)
|
|
|
|
char* timeString = ::asctime(::localtime(&t));
|
|
|
|
std::string str(timeString ? timeString : "");
|
2019-06-04 13:45:33 +00:00
|
|
|
#elif (_POSIX_C_SOURCE >= 1 || _XOPEN_SOURCE || _BSD_SOURCE || _SVID_SOURCE || defined(_POSIX_SOURCE))
|
2019-10-14 13:23:53 +00:00
|
|
|
tm localTime;
|
2019-06-03 09:41:58 +00:00
|
|
|
char timeBuf[64];
|
|
|
|
char* timeString = ::asctime_r(::localtime_r(&t, &localTime), timeBuf);
|
|
|
|
std::string str(timeString ? timeString : "");
|
2017-03-08 22:15:16 +00:00
|
|
|
#else
|
2019-06-03 09:41:58 +00:00
|
|
|
char* timeString = ::asctime(::localtime(&t));
|
|
|
|
std::string str(timeString ? timeString : "");
|
2017-03-08 22:15:16 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
// Cleanup whitespace
|
|
|
|
std::string::size_type pos = 0;
|
2019-01-02 08:30:49 +00:00
|
|
|
while (!str.empty() && std::isspace(str[str.length()-1]))
|
2017-03-08 22:15:16 +00:00
|
|
|
{str.erase(str.end()-1);}
|
|
|
|
while (!str.empty() && std::string::npos != (pos = str.find(" ", pos)))
|
2019-01-02 08:30:49 +00:00
|
|
|
{str.erase(pos, 1);}
|
2017-03-08 22:15:16 +00:00
|
|
|
|
|
|
|
return str;
|
|
|
|
}
|
|
|
|
|
2017-05-20 03:29:59 +00:00
|
|
|
// Coverity finding
|
|
|
|
template <class T, bool NON_NEGATIVE>
|
|
|
|
inline T StringToValue(const std::string& str)
|
|
|
|
{
|
|
|
|
std::istringstream iss(str);
|
|
|
|
|
|
|
|
// Arbitrary, but we need to clear a Coverity finding TAINTED_SCALAR
|
|
|
|
if (iss.str().length() > 25)
|
|
|
|
throw InvalidArgument(str + "' is too long");
|
|
|
|
|
|
|
|
T value;
|
|
|
|
iss >> std::noskipws >> value;
|
|
|
|
|
|
|
|
// Use fail(), not bad()
|
2018-12-08 13:08:08 +00:00
|
|
|
if (iss.fail())
|
2017-05-20 03:29:59 +00:00
|
|
|
throw InvalidArgument(str + "' is not a value");
|
|
|
|
|
|
|
|
if (NON_NEGATIVE && value < 0)
|
|
|
|
throw InvalidArgument(str + "' is negative");
|
|
|
|
|
|
|
|
return value;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Coverity finding
|
|
|
|
template<>
|
|
|
|
inline int StringToValue<int, true>(const std::string& str)
|
|
|
|
{
|
|
|
|
Integer n(str.c_str());
|
|
|
|
long l = n.ConvertToLong();
|
|
|
|
|
|
|
|
int r;
|
|
|
|
if (!SafeConvert(l, r))
|
|
|
|
throw InvalidArgument(str + "' is not an integer value");
|
|
|
|
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
2018-12-07 17:25:52 +00:00
|
|
|
inline std::string AddSeparator(std::string str)
|
|
|
|
{
|
2019-02-02 05:29:36 +00:00
|
|
|
if (str.empty()) return "";
|
|
|
|
const char last = str[str.length()-1];
|
2018-12-07 17:25:52 +00:00
|
|
|
if (last != '/' && last != '\\')
|
|
|
|
return str + "/";
|
|
|
|
return str;
|
|
|
|
}
|
|
|
|
|
2019-02-02 05:47:56 +00:00
|
|
|
// Use CRYPTOPP_DATA_DIR last. The problem this sidesteps is, finding an
|
|
|
|
// old version of Crypto++ library in CRYPTOPP_DATA_DIR when the library
|
|
|
|
// has been staged in DESTDIR. Using CRYPTOPP_DATA_DIR first only works
|
|
|
|
// as expected when CRYPTOPP_DATA_DIR is empty before an install. We
|
|
|
|
// encountered this problem rather quickly during testing of Crypto++ 8.1
|
|
|
|
// when Crypto++ 8.0 was installed locally. It took some time to realize
|
|
|
|
// where the old test data was coming from.
|
2019-01-02 08:30:49 +00:00
|
|
|
static std::string GetDataDir()
|
2018-12-07 17:25:52 +00:00
|
|
|
{
|
|
|
|
std::ifstream file;
|
2019-01-02 08:30:49 +00:00
|
|
|
std::string name, filename = "TestData/usage.dat";
|
|
|
|
|
2018-12-07 17:25:52 +00:00
|
|
|
#ifndef CRYPTOPP_DISABLE_DATA_DIR_SEARCH
|
2019-02-02 05:47:56 +00:00
|
|
|
// Look in $ORIGIN/../share/. This is likely a Linux install directory.
|
|
|
|
name = AddSeparator(g_argvPathHint) + std::string("../share/cryptopp/") + filename;
|
2018-12-08 04:42:31 +00:00
|
|
|
file.open(name.c_str());
|
2018-12-07 17:25:52 +00:00
|
|
|
if (file.is_open())
|
2019-02-02 05:47:56 +00:00
|
|
|
return AddSeparator(g_argvPathHint) + std::string("../share/cryptopp/");
|
2018-12-07 17:25:52 +00:00
|
|
|
#endif
|
2019-01-02 08:30:49 +00:00
|
|
|
#ifndef CRYPTOPP_DISABLE_DATA_DIR_SEARCH
|
2019-02-02 05:47:56 +00:00
|
|
|
// Look in current working directory
|
|
|
|
name = AddSeparator(g_argvPathHint) + filename;
|
2019-01-02 08:30:49 +00:00
|
|
|
file.open(name.c_str());
|
|
|
|
if (file.is_open())
|
2019-02-02 05:47:56 +00:00
|
|
|
return AddSeparator(g_argvPathHint);
|
2019-02-02 05:29:36 +00:00
|
|
|
#endif
|
|
|
|
#ifdef CRYPTOPP_DATA_DIR
|
|
|
|
// Honor CRYPTOPP_DATA_DIR. This is likely an install directory if it is not "./".
|
|
|
|
name = AddSeparator(CRYPTOPP_DATA_DIR) + filename;
|
|
|
|
file.open(name.c_str());
|
|
|
|
if (file.is_open())
|
|
|
|
return AddSeparator(CRYPTOPP_DATA_DIR);
|
2019-01-02 08:30:49 +00:00
|
|
|
#endif
|
|
|
|
return "./";
|
|
|
|
}
|
|
|
|
|
|
|
|
inline std::string DataDir(const std::string& filename)
|
|
|
|
{
|
|
|
|
std::string name;
|
|
|
|
std::ifstream file;
|
|
|
|
|
|
|
|
#if CRYPTOPP_CXX11_DYNAMIC_INIT
|
|
|
|
static std::string path = AddSeparator(GetDataDir());
|
|
|
|
name = path + filename;
|
2019-01-02 06:22:23 +00:00
|
|
|
file.open(name.c_str());
|
|
|
|
if (file.is_open())
|
|
|
|
return name;
|
2019-01-02 08:30:49 +00:00
|
|
|
#else
|
2019-01-02 17:02:32 +00:00
|
|
|
// Avoid static initialization problems
|
2019-01-02 08:30:49 +00:00
|
|
|
name = AddSeparator(GetDataDir()) + filename;
|
2018-12-08 04:42:31 +00:00
|
|
|
file.open(name.c_str());
|
2018-12-07 17:25:52 +00:00
|
|
|
if (file.is_open())
|
2018-12-08 04:42:31 +00:00
|
|
|
return name;
|
2018-12-07 17:25:52 +00:00
|
|
|
#endif
|
2019-01-02 08:30:49 +00:00
|
|
|
|
2018-12-07 17:25:52 +00:00
|
|
|
// This will cause the expected exception in the caller
|
|
|
|
return filename;
|
|
|
|
}
|
|
|
|
|
2018-07-30 00:30:19 +00:00
|
|
|
// Definition in test.cpp
|
2018-12-07 17:25:52 +00:00
|
|
|
RandomNumberGenerator& GlobalRNG();
|
2018-07-30 00:30:19 +00:00
|
|
|
|
|
|
|
// Definition in datatest.cpp
|
|
|
|
bool RunTestDataFile(const char *filename, const NameValuePairs &overrideParameters=g_nullNameValuePairs, bool thorough=true);
|
|
|
|
|
|
|
|
// Definitions in validat6.cpp
|
|
|
|
bool CryptoSystemValidate(PK_Decryptor &priv, PK_Encryptor &pub, bool thorough = false);
|
|
|
|
bool SimpleKeyAgreementValidate(SimpleKeyAgreementDomain &d);
|
2019-08-04 03:52:50 +00:00
|
|
|
bool AuthenticatedKeyAgreementWithRolesValidate(AuthenticatedKeyAgreementDomain &initiator, AuthenticatedKeyAgreementDomain &recipient);
|
2018-07-30 00:30:19 +00:00
|
|
|
bool AuthenticatedKeyAgreementValidate(AuthenticatedKeyAgreementDomain &d);
|
|
|
|
bool SignatureValidate(PK_Signer &priv, PK_Verifier &pub, bool thorough = false);
|
2015-11-18 20:32:28 +00:00
|
|
|
|
2018-07-30 00:30:19 +00:00
|
|
|
// Miscellaneous PK definitions in validat6.cpp
|
|
|
|
// Key Agreement definitions in validat7.cpp
|
|
|
|
// Encryption and Decryption definitions in validat8.cpp
|
|
|
|
// Sign and Verify definitions in validat9.cpp
|
|
|
|
|
|
|
|
bool ValidateECP();
|
|
|
|
bool ValidateEC2N();
|
|
|
|
|
|
|
|
bool ValidateRSA_Encrypt();
|
|
|
|
bool ValidateRSA_Sign();
|
|
|
|
|
|
|
|
bool ValidateLUC_Encrypt();
|
|
|
|
bool ValidateLUC_Sign();
|
|
|
|
|
|
|
|
bool ValidateLUC_DL_Encrypt();
|
|
|
|
bool ValidateLUC_DL_Sign();
|
|
|
|
|
|
|
|
bool ValidateRabin_Encrypt();
|
|
|
|
bool ValidateRabin_Sign();
|
|
|
|
|
|
|
|
bool ValidateECP();
|
|
|
|
bool ValidateECP_Agreement();
|
|
|
|
bool ValidateECP_Encrypt();
|
|
|
|
bool ValidateECP_Sign();
|
|
|
|
|
2019-07-03 05:41:23 +00:00
|
|
|
bool ValidateECP_Legacy_Encrypt();
|
2019-07-03 07:06:58 +00:00
|
|
|
bool ValidateEC2N_Legacy_Encrypt();
|
2019-07-02 14:47:46 +00:00
|
|
|
bool ValidateECP_NULLDigest_Encrypt();
|
|
|
|
|
2018-07-30 00:30:19 +00:00
|
|
|
bool ValidateEC2N();
|
|
|
|
bool ValidateEC2N_Agreement();
|
|
|
|
bool ValidateEC2N_Encrypt();
|
|
|
|
bool ValidateEC2N_Sign();
|
2015-11-05 06:59:46 +00:00
|
|
|
|
2017-02-21 07:03:29 +00:00
|
|
|
NAMESPACE_END // Test
|
|
|
|
NAMESPACE_END // CryptoPP
|
|
|
|
|
2015-11-05 06:59:46 +00:00
|
|
|
#endif
|