Skip to content
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

Fix for crate consumers not finding Signature trait methods #287

Merged
merged 1 commit into from
Jan 31, 2022

Conversation

itowlson
Copy link
Contributor

This addresses an issue when consuming the bindle crate in WAGI (and, no doubt, other applications): the ed25519_dalek::Signature::from_bytes, used in invoice/signature.rs and invoice/verification.rs, method is actually on the signature::Signature trait which is not in scope in those files. I don't yet understand why those files would compile in the Bindle client and server, but they don't compile in WAGI. And adding the trait to the files makes them give an "unused import" warning in Bindle!

The fix is to instead use Signature's TryFrom implementation, which is documented in the Signature examples, doesn't need to be brought into scope, and delegates directly to from_bytes so shouldn't change any behaviour #famouslastwords.

@vdice would be great if you could give this a test please - I'm not sure how to exercise the signature stuff. Thanks!

Copy link
Contributor

@technosophos technosophos left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM

@vdice
Copy link
Member

vdice commented Jan 31, 2022

Tested and looking good! Signing and server refresh (re-verification of invoices) all appear as expected.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

5 participants