mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2025-02-06 23:24:15 +00:00
fix crash if public key is null
This commit is contained in:
parent
aa27746982
commit
0f9e3c5b33
@ -97,7 +97,7 @@ namespace crypto
|
||||
uint8_t publicKey[EDDSA25519_PUBLIC_KEY_LENGTH];
|
||||
size_t len = EDDSA25519_PUBLIC_KEY_LENGTH;
|
||||
EVP_PKEY_get_raw_public_key (m_Pkey, publicKey, &len);
|
||||
if (memcmp (publicKey, signingPublicKey, EDDSA25519_PUBLIC_KEY_LENGTH))
|
||||
if (signingPublicKey && memcmp (publicKey, signingPublicKey, EDDSA25519_PUBLIC_KEY_LENGTH))
|
||||
{
|
||||
LogPrint (eLogWarning, "EdDSA public key mismatch. Fallback");
|
||||
EVP_PKEY_free (m_Pkey);
|
||||
|
Loading…
x
Reference in New Issue
Block a user