You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jun 3, 2020. It is now read-only.
The existing integration test for signing was removed with #38. The sign requests used to look like:
/// Sign the given opaque message with the given public key#[derive(Serialize,Deserialize,Debug)]pubstructSignRequest{/// Public key to use to sign the requestpubpublic_key:Vec<u8>,/// Message to be signedpubmsg:Vec<u8>,}
Signing needs to be implemented and the integration test reintroduced. The current integration test only tests the secret connection by sending / handling a message (PoisonPillMsg).