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