libi2pd: fix some typos

This commit is contained in:
jpk68
2026-07-24 20:45:35 -04:00
parent f72522ed26
commit b02c160b84
14 changed files with 24 additions and 24 deletions
+2 -2
View File
@@ -42,7 +42,7 @@ namespace crypto
BIGNUM * x = BN_bin2bn (pub, 32, nullptr);
BIGNUM * y = BN_bin2bn (pub + 32, 32, nullptr);
if (!EC_POINT_set_affine_coordinates (m_Curve, m_PublicKey, x, y, nullptr))
LogPrint (eLogError, "ECICS P256 invalid public key");
LogPrint (eLogError, "ECIES P256 invalid public key");
BN_free (x); BN_free (y);
}
@@ -103,7 +103,7 @@ namespace crypto
BIGNUM * x = BN_bin2bn (pub, 32, nullptr);
BIGNUM * y = BN_bin2bn (pub + 32, 32, nullptr);
if (!EC_POINT_set_affine_coordinates (curve->GetGroup (), m_PublicKey, x, y, nullptr))
LogPrint (eLogError, "ECICS GOST R 34.10 invalid public key");
LogPrint (eLogError, "ECIES GOST R 34.10 invalid public key");
BN_free (x); BN_free (y);
}