From 5f77627857b7fa07f26ec0efb671def1f1b95fcc Mon Sep 17 00:00:00 2001 From: Juliusz Sosinowicz Date: Thu, 29 Aug 2019 16:24:09 +0200 Subject: [PATCH] Fix SetASNIntRSA --- wolfcrypt/src/asn.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wolfcrypt/src/asn.c b/wolfcrypt/src/asn.c index 45ea341bb..4097025ec 100644 --- a/wolfcrypt/src/asn.c +++ b/wolfcrypt/src/asn.c @@ -647,7 +647,7 @@ static int SetASNIntMP(mp_int* n, int maxSz, byte* output) * MP_TO_E when encoding the integer fails. * Otherwise, the number of bytes added to the buffer. */ -static int SetASNIntRSA(mp_int* n, byte* output) +static int SetASNIntRSA(void* n, byte* output) { int idx = 0; int leadingBit;