From 8cee210ccb569509bef97bfc1f4e7a9697944f38 Mon Sep 17 00:00:00 2001 From: Aram Peres Date: Sat, 25 Jun 2022 14:38:08 -0400 Subject: [PATCH] Expose boringtun x25519 primitives --- src/config.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/config.rs b/src/config.rs index 20f3093..9d9732d 100644 --- a/src/config.rs +++ b/src/config.rs @@ -6,7 +6,7 @@ use std::net::{IpAddr, SocketAddr, ToSocketAddrs}; use std::sync::Arc; use anyhow::Context; -use boringtun::crypto::{X25519PublicKey, X25519SecretKey}; +pub use boringtun::crypto::{X25519PublicKey, X25519SecretKey}; const DEFAULT_PORT_FORWARD_SOURCE: &str = "127.0.0.1";