diff --git a/__crypto/curve25519/src/main.rs b/__crypto/curve25519/src/main.rs index 2d087ef..faffa22 100644 --- a/__crypto/curve25519/src/main.rs +++ b/__crypto/curve25519/src/main.rs @@ -1,6 +1,6 @@ use rand::rngs::OsRng; use ed25519_dalek::{ Keypair, Signer, Verifier }; -use x25519_dalek::{EphemeralSecret, PublicKey}; +use x25519_dalek::{ EphemeralSecret, PublicKey }; fn main() { let mut csprng = OsRng{};