summaryrefslogtreecommitdiffstats
path: root/src/main.rs
blob: 26974a76318a0330c95c567db252e605358ec4aa (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
mod handshake;
mod types;

use sodiumoxide;

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

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