aboutsummaryrefslogtreecommitdiff
path: root/src/lib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs6
1 files changed, 1 insertions, 5 deletions
diff --git a/src/lib.rs b/src/lib.rs
index 4737738..dfc4b23 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -1,18 +1,14 @@
extern crate curve25519_dalek;
+extern crate hex;
extern crate hkdf;
extern crate num_bigint;
extern crate rand;
extern crate sha2;
-//extern crate hex;
-
mod spake2;
pub use spake2::*;
#[cfg(test)]
-extern crate hex;
-
-#[cfg(test)]
mod tests {
use spake2::{Ed25519Group, ErrorType, SPAKE2, SPAKEErr};