1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
//! DigestedData-related types
use ;
use AlgorithmIdentifierOwned;
use crate CmsVersion;
use crate EncapsulatedContentInfo;
/// The `DigestedData` type is defined in [RFC 5652 Section 7].
///
/// ```text
/// DigestedData ::= SEQUENCE {
/// version CMSVersion,
/// digestAlgorithm DigestAlgorithmIdentifier,
/// encapContentInfo EncapsulatedContentInfo,
/// digest Digest
/// }
/// ```
///
/// [RFC 5652 Section 7]: https://www.rfc-editor.org/rfc/rfc5652#section-7
/// The `Digest` type is defined in [RFC 5652 Section 7].
///
/// ```text
/// Digest ::= OCTET STRING
/// ```
///
/// [RFC 5652 Section 7]: https://www.rfc-editor.org/rfc/rfc5652#section-7
pub type Digest = OctetString;