diff options
author | Brian Warner <warner@lothar.com> | 2017-05-24 18:05:27 -0700 |
---|---|---|
committer | Brian Warner <warner@lothar.com> | 2017-05-24 18:05:27 -0700 |
commit | 2c0792059c573cf12870f2aa24c9df993deef983 (patch) | |
tree | 96a68adb9e81bf3af9143911d3c0eb19caa74b26 /src/lib.rs | |
parent | ae521873c62786958051c2ae8aba5eda3e4c8114 (diff) | |
download | PAKEs-2c0792059c573cf12870f2aa24c9df993deef983.tar.xz |
improvements for tests, which of course fail
Diffstat (limited to 'src/lib.rs')
-rw-r--r-- | src/lib.rs | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -2,12 +2,16 @@ extern crate rand; extern crate curve25519_dalek; extern crate sha2; -extern crate core; mod spake2; pub use spake2::*; #[cfg(test)] +extern crate num_bigint; +#[cfg(test)] +extern crate hex; + +#[cfg(test)] mod tests { use spake2::{SPAKE2, Ed25519Group}; |