Expand description
§Messages
The actuall message and body for sending over the network. This module is also responsible for handling encryption and decryption of messages. Currently bodies of messages are the only things being encrypted in the system, in the future this might be expanded to include more items.
Structs§
- Body
- The actual body of the messages usually is just binarry data, but it still needs a custom struct to allow for easier encryption and other heleper functions.
- Message
- Represents a single message, but not the Wire format. It will mostly be accessed by the Transaction object.
- Seed
- The sodiumoxide Nonce does not support the same functions as are required here. Instead of duplicating this code throughout the codebase a simple wrapper struct is used.