Skip to content

Commit 79595a3

Browse files
account for sp math which defines NO_BIG_INT but still allows mp_int types
1 parent 10740ab commit 79595a3

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

wolfssl/openssl/bn.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
typedef struct WOLFSSL_BIGNUM {
4141
int neg; /* openssh deference */
4242
void *internal; /* our big num */
43-
#ifndef NO_BIG_INT
43+
#if !defined(NO_BIG_INT) || defined(WOLFSSL_SP_MATH)
4444
mp_int mpi;
4545
#endif
4646
} WOLFSSL_BIGNUM;

0 commit comments

Comments
 (0)