forked from wolfSSL/wolfssl
* Fix “wc_PKCS7_DecodeUnprotectedAttributes” return prior to free in GetSet error case. * Fix “wc_PKCS7_KariGenerateKEK” type mismatch for kdfType. * Fix aes.c roll_auth use of inSz over 24-bit. * Fix ecc “build_lut”, “accel_fp_mul” and “accel_fp_mul2add” use of err as unsigned. * Fix “wc_HKDF” use of un-initialized “myHmac” for heap. * Fix undefined reference to __REV for IAR due to missing intrinsics.h. * Fix build error for “wolfSSL_CTX_set_tmp_dh” if OPENSSL_EXTRA not defined and “HAVE_LIGHTY || HAVE_STUNNEL || WOLFSSL_MYSQL_COMPATIBLE”. * Cleanup of “wolfSSL_get_chain_X509” brace.. * Cleanup SSL_CtxResourceFree use of `i` and define comments. * Added “SIZEOF_LONG_LONG” to IAR-EWARM user_settings.h to support word64 (required for SHA512, etc).
15 lines
417 B
C
15 lines
417 B
C
|
|
#define NO_MAIN_DRIVER
|
|
#define BENCH_EMBEDDED
|
|
#define SINGLE_THREADED
|
|
#define NO_FILESYSTEM
|
|
#define NO_WRITEV
|
|
#define WOLFSSL_USER_IO
|
|
#define NO_DEV_RANDOM
|
|
#define USE_CERT_BUFFERS_2048
|
|
#define WOLFSSL_USER_CURRTIME
|
|
#define SIZEOF_LONG_LONG 8
|
|
|
|
#define CUSTOM_RAND_GENERATE custom_rand_generate
|
|
/* warning "write a real random seed!!!!, just for testing now" */
|
|
static int custom_rand_generate(void) { return 0 ; } |