mirror of
https://github.com/wolfSSL/wolfssl.git
synced 2025-08-01 19:54:40 +02:00
Fix uninitialized
This commit is contained in:
@@ -3107,7 +3107,7 @@ int sp_RsaPublic_2048(const byte* in, word32 inLen, mp_int* em, mp_int* mm,
|
|||||||
byte* out, word32* outLen)
|
byte* out, word32* outLen)
|
||||||
{
|
{
|
||||||
#ifdef WOLFSSL_SP_SMALL
|
#ifdef WOLFSSL_SP_SMALL
|
||||||
sp_digit* d;
|
sp_digit* d = NULL;
|
||||||
sp_digit* a;
|
sp_digit* a;
|
||||||
sp_digit* m;
|
sp_digit* m;
|
||||||
sp_digit* r;
|
sp_digit* r;
|
||||||
@@ -6476,7 +6476,7 @@ int sp_RsaPublic_3072(const byte* in, word32 inLen, mp_int* em, mp_int* mm,
|
|||||||
byte* out, word32* outLen)
|
byte* out, word32* outLen)
|
||||||
{
|
{
|
||||||
#ifdef WOLFSSL_SP_SMALL
|
#ifdef WOLFSSL_SP_SMALL
|
||||||
sp_digit* d;
|
sp_digit* d = NULL;
|
||||||
sp_digit* a;
|
sp_digit* a;
|
||||||
sp_digit* m;
|
sp_digit* m;
|
||||||
sp_digit* r;
|
sp_digit* r;
|
||||||
|
@@ -2530,7 +2530,7 @@ int sp_RsaPublic_2048(const byte* in, word32 inLen, mp_int* em, mp_int* mm,
|
|||||||
byte* out, word32* outLen)
|
byte* out, word32* outLen)
|
||||||
{
|
{
|
||||||
#ifdef WOLFSSL_SP_SMALL
|
#ifdef WOLFSSL_SP_SMALL
|
||||||
sp_digit* d;
|
sp_digit* d = NULL;
|
||||||
sp_digit* a;
|
sp_digit* a;
|
||||||
sp_digit* m;
|
sp_digit* m;
|
||||||
sp_digit* r;
|
sp_digit* r;
|
||||||
@@ -5912,7 +5912,7 @@ int sp_RsaPublic_3072(const byte* in, word32 inLen, mp_int* em, mp_int* mm,
|
|||||||
byte* out, word32* outLen)
|
byte* out, word32* outLen)
|
||||||
{
|
{
|
||||||
#ifdef WOLFSSL_SP_SMALL
|
#ifdef WOLFSSL_SP_SMALL
|
||||||
sp_digit* d;
|
sp_digit* d = NULL;
|
||||||
sp_digit* a;
|
sp_digit* a;
|
||||||
sp_digit* m;
|
sp_digit* m;
|
||||||
sp_digit* r;
|
sp_digit* r;
|
||||||
|
Reference in New Issue
Block a user