forked from wolfSSL/wolfssl
Added two more tests to hit xmemset lines
This commit is contained in:
@ -16931,6 +16931,10 @@ static int test_wc_curve448_export_private_raw_ex (void)
|
|||||||
ret = 0;
|
ret = 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
if (ret == 0) {
|
||||||
|
ret = wc_curve448_export_private_raw_ex(&key, out, &outLen,
|
||||||
|
EC448_LITTLE_ENDIAN);
|
||||||
|
}
|
||||||
outLen = outLen - 2;
|
outLen = outLen - 2;
|
||||||
if (ret == 0) {
|
if (ret == 0) {
|
||||||
ret = wc_curve448_export_private_raw_ex(&key, out, &outLen, endian);
|
ret = wc_curve448_export_private_raw_ex(&key, out, &outLen, endian);
|
||||||
@ -17023,6 +17027,11 @@ static int test_wc_curve448_import_private_raw_ex (void)
|
|||||||
ret = 0;
|
ret = 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
if (ret == 0) {
|
||||||
|
ret = wc_curve448_import_private_raw_ex(priv, privSz, pub, pubSz,
|
||||||
|
&key, EC448_LITTLE_ENDIAN);
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
if (wc_FreeRng(&rng) != 0 && ret == 0) {
|
if (wc_FreeRng(&rng) != 0 && ret == 0) {
|
||||||
ret = WOLFSSL_FATAL_ERROR;
|
ret = WOLFSSL_FATAL_ERROR;
|
||||||
|
Reference in New Issue
Block a user