Merge pull request #64 from huitseeker/hash-public
Make Hash module public
This commit is contained in:
@@ -3,6 +3,8 @@
|
|||||||
// This source code is licensed under the MIT license found in the
|
// This source code is licensed under the MIT license found in the
|
||||||
// LICENSE file in the root directory of this source tree.
|
// LICENSE file in the root directory of this source tree.
|
||||||
|
|
||||||
|
//! A convenience trait for digest bounds used throughout the library
|
||||||
|
|
||||||
use digest::{BlockInput, FixedOutput, Reset, Update};
|
use digest::{BlockInput, FixedOutput, Reset, Update};
|
||||||
|
|
||||||
/// Trait inheriting the requirements from digest::Digest for compatibility with HKDF and HMAC
|
/// Trait inheriting the requirements from digest::Digest for compatibility with HKDF and HMAC
|
||||||
|
|||||||
+1
-1
@@ -411,7 +411,7 @@ pub mod opaque;
|
|||||||
|
|
||||||
pub mod ciphersuite;
|
pub mod ciphersuite;
|
||||||
mod envelope;
|
mod envelope;
|
||||||
mod hash;
|
pub mod hash;
|
||||||
|
|
||||||
mod elligator;
|
mod elligator;
|
||||||
pub mod group;
|
pub mod group;
|
||||||
|
|||||||
Reference in New Issue
Block a user