Implemented and tested the state machine model for the `Sender`. Tested against the rust bindings for libsodium using the `crypto_box` api.
13 lines
367 B
TOML
13 lines
367 B
TOML
[package]
|
|
name = "messagebox-protocol"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
uuid = { version = "1.19", features = ["v4", "serde"] }
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
thiserror = "2.0"
|
|
|
|
[dev-dependencies]
|
|
libsodium-rs = "0.2.2" # The library itself is agnostic to implementation, but we need something to test against
|