You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
encrypted-dns-server/src/config.rs

17 lines
280 B
Rust

use crate::crypto::*;
use crate::errors::*;
use bincode;
#[derive(Serialize, Deserialize, Debug)]
pub struct State {
pub provider_kp: SignKeyPair,
}
impl State {
pub fn new() -> Self {
let provider_kp = SignKeyPair::new();
State { provider_kp }
}
}