mirror of
https://github.com/wolfSSL/wolfssl.git
synced 2025-07-31 11:17:29 +02:00
fix call to MakeAnyCert from wc_MakeNtruCert(); it was missing the new parameter
This commit is contained in:
@ -13475,7 +13475,8 @@ int wc_MakeCert(Cert* cert, byte* derBuffer, word32 derSz, RsaKey* rsaKey,
|
|||||||
int wc_MakeNtruCert(Cert* cert, byte* derBuffer, word32 derSz,
|
int wc_MakeNtruCert(Cert* cert, byte* derBuffer, word32 derSz,
|
||||||
const byte* ntruKey, word16 keySz, WC_RNG* rng)
|
const byte* ntruKey, word16 keySz, WC_RNG* rng)
|
||||||
{
|
{
|
||||||
return MakeAnyCert(cert, derBuffer, derSz, NULL, NULL, rng, ntruKey, keySz, NULL);
|
return MakeAnyCert(cert, derBuffer, derSz, NULL, NULL, rng,
|
||||||
|
ntruKey, keySz, NULL, NULL);
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif /* HAVE_NTRU */
|
#endif /* HAVE_NTRU */
|
||||||
|
Reference in New Issue
Block a user