We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 32dd7d1 commit f532495Copy full SHA for f532495
src/signatureverifier.cpp
@@ -298,7 +298,7 @@ void SignatureVerifier::VerifyDSAPubKeyPem(const std::string &pem)
298
299
void SignatureVerifier::VerifyEdDSAPubKey(const std::string& pubkey_base64)
300
{
301
- const std::string pubkey = Base64ToBin(Settings::GetEdDSAPubKey());
+ const std::string pubkey = Base64ToBin(pubkey_base64);
302
if (pubkey.size() != 32)
303
304
throw BadSignatureException("Invalid public key size.");
0 commit comments