didcomm-rs icon indicating copy to clipboard operation
didcomm-rs copied to clipboard

DIDComm messaging specifications implementation: https://identity.foundation/didcomm-messaging/spec/

Results 4 didcomm-rs issues
Sort by recently updated
recently updated
newest added

After cloning the repo and typing 'cargo build' (using cargo & rust 1.70.0), I am getting an error (see below). However, if I add this line (see Modification) as the...

The Error type can not be sent between thread because of the [`Other`](https://github.com/decentralized-identity/didcomm-rs/blob/main/src/error.rs#L51) variant is a trait object.

enhancement
good first issue

Hi I have a question about `Message::seal_signed`. The signature of [`Message::seal_signed`](https://github.com/decentralized-identity/didcomm-rs/blob/main/src/messages/message.rs#L614) is as follows: ``` pub fn seal_signed( self, encryption_sender_private_key: &[u8], encryption_recipient_public_keys: Option, signing_algorithm: SignatureAlgorithm, signing_sender_private_key: &[u8], ) -> Result...

Hello, in the README.md examples it mentions using the routed_by() method of the Message struct multiple times in reverse order to facilitate mediating with multiple mediators. This may have worked...