mirror of
https://github.com/wolfSSL/wolfssl.git
synced 2025-08-02 12:14:38 +02:00
account for sp math which defines NO_BIG_INT but still allows mp_int types
This commit is contained in:
@@ -40,7 +40,7 @@
|
|||||||
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 */
|
||||||
#ifndef NO_BIG_INT
|
#if !defined(NO_BIG_INT) || defined(WOLFSSL_SP_MATH)
|
||||||
mp_int mpi;
|
mp_int mpi;
|
||||||
#endif
|
#endif
|
||||||
} WOLFSSL_BIGNUM;
|
} WOLFSSL_BIGNUM;
|
||||||
|
Reference in New Issue
Block a user