Add support for SHAKE128 and SHAKE256.

This commit is contained in:
2019-06-08 14:56:59 -07:00
parent c675aaa5f6
commit 7c45f898ab
6 changed files with 12954 additions and 6 deletions

View File

@@ -41,6 +41,10 @@ pub mod ed25519;
/// The `ssh` module provides support for parsing OpenSSH-formatted SSH keys,
/// both public and private.
pub mod ssh;
/// The `shake` modules provides support for SHAKE128 and SHAKE256, two
/// variable-length hash functions that derive from the same core hash
/// as SHA3.
pub mod shake;
/// The `x509` module supports parsing and generating x.509 certificates, as
/// used by TLS and others.
pub mod x509;