We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
When calling verifySignature you can append any character to the message payload and it would verify the signature correctly.
verifySignature
Steps To Reproduce Steps to reproduce the behavior:
false
true
Additional context The issue is in hex2buf function in https://github.com/ecadlabs/taquito/blob/27f57de79ab464b7c4d9255275c2f48216214fad/packages/taquito-utils/src/taquito-utils.ts#L199C3-L199C3 which would truncate if the length of the message is odd.
hex2buf
The text was updated successfully, but these errors were encountered:
Acking this issue, thank you for reporting. A fix is in the works.
Sorry, something went wrong.
Addressed in PR #2580
issue #2580 has been completed and the patch release Taquito v17.1.1 has been released here: https://www.npmjs.com/package/@taquito/taquito/v/17.1.1
No branches or pull requests
When calling
verifySignature
you can append any character to the message payload and it would verify the signature correctly.Steps To Reproduce
Steps to reproduce the behavior:
verifySignature
with argument and append any character to the message payload.false
instead oftrue
.Additional context
The issue is in
hex2buf
function in https://github.com/ecadlabs/taquito/blob/27f57de79ab464b7c4d9255275c2f48216214fad/packages/taquito-utils/src/taquito-utils.ts#L199C3-L199C3 which would truncate if the length of the message is odd.The text was updated successfully, but these errors were encountered: