Skip to content
Permalink
Browse files

Make interfaces used by WireGuard public again

  • Loading branch information...
solidsnack committed Feb 14, 2017
1 parent 17f01e5 commit 6d91d075ad2f98f03c807a471953495c720a5696
Showing with 2 additions and 2 deletions.
  1. +1 −1 src/cipherstate.rs
  2. +1 −1 src/lib.rs
@@ -13,7 +13,7 @@ pub trait CipherStateType {
#[derive(Default)]
pub struct CipherState<C: CipherType + Default> {
cipher : C,
n : u64,
pub n : u64,
has_key : bool,
overflow: bool
}
@@ -13,6 +13,6 @@ pub use crypto_types::{RandomType, DhType, CipherType, HashType};
pub use wrappers::crypto_wrapper::*;
pub use wrappers::rand_wrapper::*;
pub use handshakestate::{HandshakeState};
pub use cipherstate::{CipherState};
pub use cipherstate::{CipherState, CipherStateType};
pub use patterns::{HandshakePattern};
pub use handshakecryptoowner::*;

0 comments on commit 6d91d07

Please sign in to comment.
You can’t perform that action at this time.