1use libc::*;
2
3pub const PKCS7_TEXT: c_int = 0x1;
4pub const PKCS7_NOCERTS: c_int = 0x2;
5pub const PKCS7_NOSIGS: c_int = 0x4;
6pub const PKCS7_NOCHAIN: c_int = 0x8;
7pub const PKCS7_NOINTERN: c_int = 0x10;
8pub const PKCS7_NOVERIFY: c_int = 0x20;
9pub const PKCS7_DETACHED: c_int = 0x40;
10pub const PKCS7_BINARY: c_int = 0x80;
11pub const PKCS7_NOATTR: c_int = 0x100;
12pub const PKCS7_NOSMIMECAP: c_int = 0x200;
13pub const PKCS7_NOOLDMIMETYPE: c_int = 0x400;
14pub const PKCS7_CRLFEOL: c_int = 0x800;
15pub const PKCS7_STREAM: c_int = 0x1000;
16pub const PKCS7_NOCRL: c_int = 0x2000;
17pub const PKCS7_PARTIAL: c_int = 0x4000;
18pub const PKCS7_REUSE_DIGEST: c_int = 0x8000;
19#[cfg(not(any(ossl101, ossl102, libressl)))]
20pub const PKCS7_NO_DUAL_CONTENT: c_int = 0x10000;
21