2024-02-27 01:34:37 -05:00
|
|
|
/* LibTomCrypt, modular cryptographic library -- Tom St Denis */
|
|
|
|
/* SPDX-License-Identifier: Unlicense */
|
|
|
|
#ifndef DEMOS_COMMON_H_
|
|
|
|
#define DEMOS_COMMON_H_
|
|
|
|
|
|
|
|
#include <tomcrypt.h>
|
|
|
|
|
|
|
|
extern prng_state yarrow_prng;
|
2025-02-20 05:32:33 -05:00
|
|
|
#if defined(LTC_MDSA)
|
|
|
|
extern const unsigned char ltc_dsa_private_test_key[];
|
|
|
|
extern const unsigned long ltc_dsa_private_test_key_sz;
|
|
|
|
int dsa_key_cmp(const int should_type, const dsa_key *should, const dsa_key *is);
|
|
|
|
#endif
|
|
|
|
#if defined(LTC_MRSA)
|
|
|
|
extern const unsigned char ltc_rsa_private_test_key[];
|
|
|
|
extern const unsigned long ltc_rsa_private_test_key_sz;
|
|
|
|
int rsa_key_cmp(const int should_type, const rsa_key *should, const rsa_key *is);
|
|
|
|
#endif
|
|
|
|
#if defined(LTC_MECC)
|
|
|
|
extern const unsigned char ltc_ecc_long_pri_test_key[];
|
|
|
|
extern const unsigned long ltc_ecc_long_pri_test_key_sz;
|
|
|
|
int ecc_key_cmp(const int should_type, const ecc_key *should, const ecc_key *is);
|
|
|
|
#endif
|
2024-02-27 01:34:37 -05:00
|
|
|
|
|
|
|
#ifdef LTC_VERBOSE
|
|
|
|
#define DO(x) do { fprintf(stderr, "%s:\n", #x); run_cmd((x), __LINE__, __FILE__, #x, NULL); } while (0)
|
|
|
|
#define DOX(x, str) do { fprintf(stderr, "%s - %s:\n", #x, (str)); run_cmd((x), __LINE__, __FILE__, #x, (str)); } while (0)
|
|
|
|
#define SHOULD_FAIL(x) do { fprintf(stderr, "%s:\n", #x); run_cmd((x) != CRYPT_OK ? CRYPT_OK : CRYPT_FAIL_TESTVECTOR, __LINE__, __FILE__, #x, NULL); } while (0)
|
|
|
|
#define SHOULD_FAIL_WITH(x, e) do { fprintf(stderr, "%s:\n", #x); run_cmd((x) == (e) ? CRYPT_OK : CRYPT_FAIL_TESTVECTOR, __LINE__, __FILE__, #x, NULL); } while (0)
|
|
|
|
#define ENSURE(x) do { fprintf(stderr, "%s:\n", #x); run_cmd(((x)) ? CRYPT_OK : CRYPT_FAIL_TESTVECTOR, __LINE__, __FILE__, #x, NULL); } while (0)
|
|
|
|
#define ENSUREX(x, str) do { fprintf(stderr, "%s:\n", #x); run_cmd(((x)) ? CRYPT_OK : CRYPT_FAIL_TESTVECTOR, __LINE__, __FILE__, #x, (str)); } while (0)
|
|
|
|
#else
|
|
|
|
#define DO(x) do { run_cmd((x), __LINE__, __FILE__, #x, NULL); } while (0)
|
|
|
|
#define DOX(x, str) do { run_cmd((x), __LINE__, __FILE__, #x, (str)); } while (0)
|
|
|
|
#define SHOULD_FAIL(x) do { run_cmd((x) != CRYPT_OK ? CRYPT_OK : CRYPT_FAIL_TESTVECTOR, __LINE__, __FILE__, #x, NULL); } while (0)
|
|
|
|
#define SHOULD_FAIL_WITH(x, e) do { run_cmd((x) == (e) ? CRYPT_OK : CRYPT_FAIL_TESTVECTOR, __LINE__, __FILE__, #x, NULL); } while (0)
|
|
|
|
#define ENSURE(x) do { run_cmd(((x)) ? CRYPT_OK : CRYPT_FAIL_TESTVECTOR, __LINE__, __FILE__, #x, NULL); } while (0)
|
|
|
|
#define ENSUREX(x, str) do { run_cmd(((x)) ? CRYPT_OK : CRYPT_FAIL_TESTVECTOR, __LINE__, __FILE__, #x, (str)); } while (0)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#define COMPARE_TESTVECTOR(i, il, s, sl, wa, wi) do { DO(do_compare_testvector((i), (il), (s), (sl), (wa), (wi))); } while(0)
|
|
|
|
|
2025-02-20 05:32:33 -05:00
|
|
|
#if !((defined(_WIN32) || defined(_WIN32_WCE)) && !defined(__GNUC__)) && !defined(LTC_NO_FILE)
|
2024-02-27 01:34:37 -05:00
|
|
|
#define LTC_TEST_READDIR
|
|
|
|
|
|
|
|
typedef int (*dir_iter_cb)(const void *d, unsigned long l, void* ctx);
|
2025-02-20 05:32:33 -05:00
|
|
|
typedef int (*dir_fiter_cb)(FILE *f, void* ctx);
|
2024-02-27 01:34:37 -05:00
|
|
|
typedef void (*dir_cleanup_cb)(void* ctx);
|
|
|
|
|
2025-02-20 05:32:33 -05:00
|
|
|
int test_process_dir(const char *path, void *ctx, dir_iter_cb iter, dir_fiter_cb fiter, dir_cleanup_cb cleanup, const char *test);
|
2024-02-27 01:34:37 -05:00
|
|
|
#endif
|
|
|
|
|
|
|
|
void run_cmd(int res, int line, const char *file, const char *cmd, const char *algorithm);
|
|
|
|
|
|
|
|
void print_hex(const char* what, const void* v, const unsigned long l);
|
|
|
|
|
|
|
|
int do_compare_testvector(const void* is, const unsigned long is_len, const void* should, const unsigned long should_len, const char* what, int which);
|
|
|
|
|
|
|
|
#endif /* DEMOS_COMMON_H_ */
|