summaryrefslogtreecommitdiff
path: root/src/pubkey.cpp
diff options
context:
space:
mode:
authorRoman Smrž <roman.smrz@seznam.cz>2024-10-13 21:29:01 +0200
committerRoman Smrž <roman.smrz@seznam.cz>2024-11-16 10:12:49 +0100
commitbb2f021704f06909952dfcae45c212b1a496189a (patch)
tree0526afc7eed9796f52b7999cc77e19865fd76447 /src/pubkey.cpp
parent116a34391a480d5b55041101b544526ee0dd8e3c (diff)
Update to OpenSSL 3.0 APIHEADmaster
Changelog: Require OpenSSL 3.0 or newer
Diffstat (limited to 'src/pubkey.cpp')
-rw-r--r--src/pubkey.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pubkey.cpp b/src/pubkey.cpp
index 59b73f9..9e89cde 100644
--- a/src/pubkey.cpp
+++ b/src/pubkey.cpp
@@ -108,7 +108,7 @@ optional<SecretKey> SecretKey::fromData(const Stored<PublicKey> & pub, const vec
keyData.resize(keyLen);
EVP_PKEY_get_raw_public_key(pub->key.get(), keyData.data(), &keyLen);
- if (EVP_PKEY_cmp(pkey.get(), pub->key.get()) != 1)
+ if( EVP_PKEY_eq( pkey.get(), pub->key.get() ) != 1 )
return nullopt;
pub.ref().storage().storeKey(pub.ref(), sdata);