Rename `schnorrsig` module to `schnorr`

Schnorr is commenly known as a signature algorithm, we don't need
to restate that in the name of the module.
This commit is contained in:
Thomas Eizinger 2021-09-09 19:42:17 +10:00
parent d4fb819d80
commit 760559c70e
No known key found for this signature in database
GPG Key ID: 651AC83A6C6C8B96
2 changed files with 1 additions and 1 deletions

View File

@ -148,7 +148,7 @@ mod key;
pub mod constants; pub mod constants;
pub mod ecdh; pub mod ecdh;
pub mod ecdsa; pub mod ecdsa;
pub mod schnorrsig; pub mod schnorr;
#[cfg(feature = "serde")] #[cfg(feature = "serde")]
mod serde_util; mod serde_util;