| Crates.io | twopoint |
| lib.rs | twopoint |
| version | 0.1.0 |
| created_at | 2025-07-16 09:17:01.471384+00 |
| updated_at | 2025-07-16 09:25:40.907961+00 |
| description | Encrypted UDP messaging between two endpoints using AES-128-GCM |
| homepage | |
| repository | https://github.com/luavixen/twopoint |
| max_upload_size | |
| id | 1755210 |
| size | 33,373 |
Encrypted UDP messaging between two endpoints using AES-128-GCM.
use twopoint::{Peer, Key};
// create encryption key from hex string
// use $ openssl rand -hex 16
let key: Key = "371fa32e478d65c7d91b7cc431d813af".parse()?;
// create two peers
let peer1 = Peer::setup("127.0.0.1:0", "0.0.0.0:0", key)?;
let peer2 = Peer::setup("127.0.0.1:0", "0.0.0.0:0", key)?;
// connect peers to each other
peer1.connect(peer2.local_addr())?;
peer2.connect(peer1.local_addr())?;
// send encrypted message
let mut message = b"hello world".to_vec();
peer1.send(&mut message)?;
// receive and decrypt message (buffer must be large enough)
let mut buffer = vec![0u8; 1024];
peer2.recv(&mut buffer)?;
The encryption implementation was created without formal cryptography experience, though I believe it is generally sound. I use AES-128-GCM with ChaCha8 CSPRNG generated nonces where reuse is theoretically possible after ~2^96 nonces. You probably shouldn't put this into production.
Made with ❤ by Lua (foxgirl.dev)
This crate is licensed under the MIT License.