Skip to content

Commit

Permalink
Merge branch 'task/SDK-4691_pub_key_signature' into 'release/v8.2.0'
Browse files Browse the repository at this point in the history
SDK-4691 Investigate public key signature verification failure [hotfix 8.2.0]

See merge request sdk/sdk!6124
  • Loading branch information
aabellagm committed Dec 13, 2024
2 parents cb25bf2 + d414210 commit 25736f4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/megaclient.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -15903,7 +15903,7 @@ error MegaClient::trackSignature(attr_t signatureType, handle uh, const std::str
if (signatureType == ATTR_SIG_CU255_PUBK)
{
// retrieve public key whose signature wants to be verified, from cache
const UserAttribute* attribute = user->getAttribute(signatureType);
const UserAttribute* attribute = user->getAttribute(ATTR_CU25519_PUBK);
if (!attribute || !attribute->isValid())
{
LOG_warn << "Failed to verify signature " << User::attr2string(signatureType)
Expand Down

0 comments on commit 25736f4

Please sign in to comment.