fix user rsa no error codes?

This commit is contained in:
toddouska 2016-07-25 19:19:46 -07:00
parent 51042e166f
commit a274386693

View File

@ -2675,7 +2675,7 @@ int wc_RsaKeyToPublicDer(RsaKey* key, byte* output, word32 inLen)
int wc_RsaSetRNG(RsaKey* key, WC_RNG* rng)
{
if (key == NULL)
return BAD_FUNC_ARG;
return USER_CRYPTO_ERROR;
(void)rng;