diff options
Diffstat (limited to 'src/sign.rs')
-rw-r--r-- | src/sign.rs | 14 |
1 files changed, 5 insertions, 9 deletions
diff --git a/src/sign.rs b/src/sign.rs index 5fca564..2aa0e8a 100644 --- a/src/sign.rs +++ b/src/sign.rs @@ -16,16 +16,12 @@ //! A multi-step (init-update-finish) interface for Ed25519 signing and verification //! -extern crate hex; -extern crate ring; -extern crate untrusted; +use ring::rand; +use ring::rand::SecureRandom; +use ring::signature; +use ring::signature::Ed25519KeyPair; -use self::ring::rand; -use self::ring::rand::SecureRandom; -use self::ring::signature; -use self::ring::signature::Ed25519KeyPair; - -use self::untrusted::Input; +use untrusted::Input; use std::fmt; use std::fmt::Formatter; |