mirror of
https://github.com/wolfSSL/wolfssl.git
synced 2025-08-01 03:34:39 +02:00
add rsafunction mp_exptmod_e debug message
This commit is contained in:
@@ -388,9 +388,12 @@ static int wc_RsaFunction(const byte* in, word32 inLen, byte* out,
|
||||
/* convert */
|
||||
if (mp_to_unsigned_bin(&tmp, out) != MP_OKAY)
|
||||
ERROR_OUT(MP_TO_E);
|
||||
|
||||
done:
|
||||
|
||||
done:
|
||||
mp_clear(&tmp);
|
||||
if (ret == MP_EXPTMOD_E) {
|
||||
WOLFSSL_MSG("RSA_FUNCTION MP_EXPTMOD_E: memory/config problem");
|
||||
}
|
||||
return ret;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user