pkcs7.h
1 /* pkcs7.h
2  *
3  * Copyright (C) 2006-2020 wolfSSL Inc.
4  *
5  * This file is part of wolfSSL.
6  *
7  * wolfSSL is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation; either version 2 of the License, or
10  * (at your option) any later version.
11  *
12  * wolfSSL is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this program; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1335, USA
20  */
21 
22 /* pkcs7.h for openSSL */
23 
24 
25 #ifndef WOLFSSL_PKCS7_H_
26 #define WOLFSSL_PKCS7_H_
27 
28 #include <wolfssl/openssl/ssl.h>
30 
31 #ifdef __cplusplus
32  extern "C" {
33 #endif
34 
35 #if defined(OPENSSL_ALL) && defined(HAVE_PKCS7)
36 
37 #define PKCS7_NOINTERN 0x0010
38 #define PKCS7_NOVERIFY 0x0020
39 
40 
41 typedef struct WOLFSSL_PKCS7
42 {
43  PKCS7 pkcs7;
44  unsigned char* data;
45  int len;
46 } WOLFSSL_PKCS7;
47 
48 
49 WOLFSSL_API PKCS7* wolfSSL_PKCS7_new(void);
50 WOLFSSL_API PKCS7_SIGNED* wolfSSL_PKCS7_SIGNED_new(void);
51 WOLFSSL_API void wolfSSL_PKCS7_free(PKCS7* p7);
52 WOLFSSL_API void wolfSSL_PKCS7_SIGNED_free(PKCS7_SIGNED* p7);
53 WOLFSSL_API PKCS7* wolfSSL_d2i_PKCS7(PKCS7** p7, const unsigned char** in,
54  int len);
55 WOLFSSL_API PKCS7* wolfSSL_d2i_PKCS7_bio(WOLFSSL_BIO* bio, PKCS7** p7);
56 WOLFSSL_API int wolfSSL_PKCS7_verify(PKCS7* p7, WOLFSSL_STACK* certs,
57  WOLFSSL_X509_STORE* store, WOLFSSL_BIO* in, WOLFSSL_BIO* out, int flags);
58 WOLFSSL_API WOLFSSL_STACK* wolfSSL_PKCS7_get0_signers(PKCS7* p7,
59  WOLFSSL_STACK* certs, int flags);
60 WOLFSSL_API int wolfSSL_PEM_write_bio_PKCS7(WOLFSSL_BIO* bio, PKCS7* p7);
61 
62 #define PKCS7_new wolfSSL_PKCS7_new
63 #define PKCS7_SIGNED_new wolfSSL_PKCS7_SIGNED_new
64 #define PKCS7_free wolfSSL_PKCS7_free
65 #define PKCS7_SIGNED_free wolfSSL_PKCS7_SIGNED_free
66 #define d2i_PKCS7 wolfSSL_d2i_PKCS7
67 #define d2i_PKCS7_bio wolfSSL_d2i_PKCS7_bio
68 #define PKCS7_verify wolfSSL_PKCS7_verify
69 #define PKCS7_get0_signers wolfSSL_PKCS7_get0_signers
70 #define PEM_write_bio_PKCS7 wolfSSL_PEM_write_bio_PKCS7
71 
72 #endif /* OPENSSL_ALL && HAVE_PKCS7 */
73 
74 #ifdef __cplusplus
75  } /* extern "C" */
76 #endif
77 
78 #endif /* WOLFSSL_PKCS7_H_ */
79 
Definition: internal.h:3546
Definition: pkcs7.h:234
Definition: ssl.h:505
Definition: ssl.h:461