1use libc::*;
2
3#[cfg(ossl101)]
4pub const CMS_TEXT: c_uint = 0x1;
5#[cfg(ossl101)]
6pub const CMS_NOCERTS: c_uint = 0x2;
7#[cfg(ossl101)]
8pub const CMS_NO_CONTENT_VERIFY: c_uint = 0x4;
9#[cfg(ossl101)]
10pub const CMS_NO_ATTR_VERIFY: c_uint = 0x8;
11#[cfg(ossl101)]
12pub const CMS_NOSIGS: c_uint = 0x4 | 0x8;
13#[cfg(ossl101)]
14pub const CMS_NOINTERN: c_uint = 0x10;
15#[cfg(ossl101)]
16pub const CMS_NO_SIGNER_CERT_VERIFY: c_uint = 0x20;
17#[cfg(ossl101)]
18pub const CMS_NOVERIFY: c_uint = 0x20;
19#[cfg(ossl101)]
20pub const CMS_DETACHED: c_uint = 0x40;
21#[cfg(ossl101)]
22pub const CMS_BINARY: c_uint = 0x80;
23#[cfg(ossl101)]
24pub const CMS_NOATTR: c_uint = 0x100;
25#[cfg(ossl101)]
26pub const CMS_NOSMIMECAP: c_uint = 0x200;
27#[cfg(ossl101)]
28pub const CMS_NOOLDMIMETYPE: c_uint = 0x400;
29#[cfg(ossl101)]
30pub const CMS_CRLFEOL: c_uint = 0x800;
31#[cfg(ossl101)]
32pub const CMS_STREAM: c_uint = 0x1000;
33#[cfg(ossl101)]
34pub const CMS_NOCRL: c_uint = 0x2000;
35#[cfg(ossl101)]
36pub const CMS_PARTIAL: c_uint = 0x4000;
37#[cfg(ossl101)]
38pub const CMS_REUSE_DIGEST: c_uint = 0x8000;
39#[cfg(ossl101)]
40pub const CMS_USE_KEYID: c_uint = 0x10000;
41#[cfg(ossl101)]
42pub const CMS_DEBUG_DECRYPT: c_uint = 0x20000;
43#[cfg(ossl102)]
44pub const CMS_KEY_PARAM: c_uint = 0x40000;
45#[cfg(ossl110)]
46pub const CMS_ASCIICRLF: c_uint = 0x80000;
47