sha3 0.12.0

Implementation of the SHA-3 family of cryptographic hash algorithms
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
use digest::const_oid::{AssociatedOid, ObjectIdentifier};

impl AssociatedOid for super::Sha3_224 {
    const OID: ObjectIdentifier = ObjectIdentifier::new_unwrap("2.16.840.1.101.3.4.2.7");
}

impl AssociatedOid for super::Sha3_256 {
    const OID: ObjectIdentifier = ObjectIdentifier::new_unwrap("2.16.840.1.101.3.4.2.8");
}

impl AssociatedOid for super::Sha3_384 {
    const OID: ObjectIdentifier = ObjectIdentifier::new_unwrap("2.16.840.1.101.3.4.2.9");
}

impl AssociatedOid for super::Sha3_512 {
    const OID: ObjectIdentifier = ObjectIdentifier::new_unwrap("2.16.840.1.101.3.4.2.10");
}