Permalink
Browse files
Make interfaces used by WireGuard public again
- Loading branch information...
Showing
with
2 additions
and
2 deletions.
-
+1
−1
src/cipherstate.rs
-
+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