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
38
39
40
41
42
43
44
45
46
#![no_std]
#![cfg_attr(docsrs, feature(doc_cfg))]
#![doc = include_str!("../README.md")]
#![doc(
html_logo_url = "https://raw.githubusercontent.com/RustCrypto/meta/master/logo.svg",
html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/meta/master/logo.svg",
html_root_url = "https://docs.rs/pkcs7/0.3.0"
)]
#![forbid(unsafe_code, clippy::unwrap_used)]
#![warn(missing_docs, rust_2018_idioms, unused_qualifications)]
mod content_info;
mod content_type;
pub use crate::{content_info::ContentInfo, content_type::ContentType};
pub mod data_content;
pub mod encrypted_data_content;
pub mod enveloped_data_content;
use der::asn1::ObjectIdentifier;
pub const PKCS_7_OID: ObjectIdentifier = ObjectIdentifier::new("1.2.840.113549.1.7");
pub const PKCS_7_DATA_OID: ObjectIdentifier = ObjectIdentifier::new("1.2.840.113549.1.7.1");
pub const PKCS_7_SIGNED_DATA_OID: ObjectIdentifier = ObjectIdentifier::new("1.2.840.113549.1.7.2");
pub const PKCS_7_ENVELOPED_DATA_OID: ObjectIdentifier =
ObjectIdentifier::new("1.2.840.113549.1.7.3");
pub const PKCS_7_SIGNED_AND_ENVELOPED_DATA_OID: ObjectIdentifier =
ObjectIdentifier::new("1.2.840.113549.1.7.4");
pub const PKCS_7_DIGESTED_DATA_OID: ObjectIdentifier =
ObjectIdentifier::new("1.2.840.113549.1.7.5");
pub const PKCS_7_ENCRYPTED_DATA_OID: ObjectIdentifier =
ObjectIdentifier::new("1.2.840.113549.1.7.6");