summaryrefslogtreecommitdiffstats
path: root/src/main.rs
blob: e49a217c0e8286f6a96c8513b268347a7edd1564 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#![feature(test)]

mod handshake;
mod router;
mod types;

use sodiumoxide;

use handshake::Device;
use types::KeyPair;

fn main() {
    // choose optimal crypto implementations for platform
    sodiumoxide::init().unwrap();
}