DaGenix / rust-crypto

A (mostly) pure-Rust implementation of various cryptographic algorithms.
Apache License 2.0
1.39k stars 295 forks source link

Remove two unused imports from Hmac and Whirlpool tests #435

Closed KushalP closed 5 years ago

KushalP commented 6 years ago

This change removes the following warnings about unused imports:

   --> src/hmac.rs:126:9
    |
126 |     use digest::Digest;
    |         ^^^^^^^^^^^^^^
    |
    = note: #[warn(unused_imports)] on by default

warning: unused import: `std::ascii::AsciiExt`
   --> src/whirlpool.rs:210:9
    |
210 |     use std::ascii::AsciiExt;
    |         ^^^^^^^^^^^^^^^^^^^^