Merge pull request #2961 from kaleb-himes/WOLFSSL_EXAMPLES

Fix failing build for rsa_verify_only example
This commit is contained in:
Sean Parkinson
2020-05-11 09:31:31 +10:00
committed by GitHub

View File

@ -498,7 +498,7 @@ void sp_clamp(sp_int* a)
a->used = i + 1; a->used = i + 1;
} }
#if !defined(WOLFSSL_RSA_VERIFY_ONLY) || (!defined(NO_DH) || defined(HAVE_ECC)) #if defined(WOLFSSL_RSA_VERIFY_ONLY) || (!defined(NO_DH) || defined(HAVE_ECC))
/* Grow big number to be able to hold l digits. /* Grow big number to be able to hold l digits.
* This function does nothing as the number of digits is fixed. * This function does nothing as the number of digits is fixed.
* *
@ -516,7 +516,9 @@ int sp_grow(sp_int* a, int l)
return err; return err;
} }
#endif
#if !defined(WOLFSSL_RSA_VERIFY_ONLY) || (!defined(NO_DH) || defined(HAVE_ECC))
/* Sub a one digit number from the big number. /* Sub a one digit number from the big number.
* *
* a SP integer. * a SP integer.