Rename signature module to sig

This commit is contained in:
timvisee 2018-03-28 19:11:34 +02:00
parent ba7d6a6ad1
commit b77017a269
No known key found for this signature in database
GPG key ID: 109CBA0BF74036C2
3 changed files with 2 additions and 2 deletions

View file

@ -17,7 +17,7 @@ use serde_json;
use crypto::b64;
use crypto::key_set::KeySet;
use crypto::sign::signature_encoded;
use crypto::sig::signature_encoded;
use ext::status_code::StatusCodeExt;
use file::file::DownloadFile;
use file::metadata::Metadata;

View file

@ -1,7 +1,7 @@
pub mod b64;
pub mod hdkf;
pub mod key_set;
pub mod sign;
pub mod sig;
// Reexport the cryptographically secure random bytes generator
pub use super::openssl::rand::rand_bytes;