Crate for simple and secure TCP communication
All traffic is encrypted with 256-bit AES-CBC
``` //Connect let mut client = TcpStream::connect("127.0.0.1:4234").unwrap();
//Wait until connection is initialized client.waituntilready().unwrap();
//Build message let mut msg = Message::new(); msg.writef64(1.23455); msg.writebuffer(&[3, 1, 4, 56]);
//Send message client.write(&msg).unwrap(); ```
See examples