easywireguard 0.5.1

mesh, minus the mess - interfaces, keys and full-mesh configs in one CLI + TUI
1
2
3
4
5
6
7
8
9
10
//! `ewg psk`: a fresh preshared key.

use anyhow::Result;

use crate::keys;

pub fn run() -> Result<()> {
    println!("{}", keys::gen_psk());
    Ok(())
}