mirror of
https://github.com/wolfSSL/wolfssl.git
synced 2025-07-31 11:17:29 +02:00
Fix for SP math build in OpenSSL bn.h
This commit is contained in:
@ -40,7 +40,9 @@
|
|||||||
typedef struct WOLFSSL_BIGNUM {
|
typedef struct WOLFSSL_BIGNUM {
|
||||||
int neg; /* openssh deference */
|
int neg; /* openssh deference */
|
||||||
void *internal; /* our big num */
|
void *internal; /* our big num */
|
||||||
#if defined(USE_FAST_MATH) && !defined(HAVE_WOLF_BIGINT)
|
#ifdef WOLFSSL_SP_MATH
|
||||||
|
sp_int fp;
|
||||||
|
#elif defined(USE_FAST_MATH) && !defined(HAVE_WOLF_BIGINT)
|
||||||
fp_int fp;
|
fp_int fp;
|
||||||
#endif
|
#endif
|
||||||
} WOLFSSL_BIGNUM;
|
} WOLFSSL_BIGNUM;
|
||||||
|
Reference in New Issue
Block a user