-
Notifications
You must be signed in to change notification settings - Fork 172
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Crypto: move ops to Value #357
base: master
Are you sure you want to change the base?
Conversation
} | ||
} | ||
if (v->isSigned()) | ||
return v->checkSignature(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No more log if checkSignature fails "Signature verification failed"
} | ||
if (!n->signatureValid) { | ||
DHT_LOG.WARN("Edition forbidden: signature verification failed."); | ||
if (not n->checkSignature()) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Here too.
signatureChecked = true; | ||
if (isSigned()) { | ||
signatureValid = owner and owner->checkSignature(getToSign(), signature); | ||
} else { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Remove this block for homogeneization
Else it's ok for me |
f05b60d
to
dfd0a09
Compare
85204fa
to
966e620
Compare
No description provided.