blob: 0eb8a1caf0f910aa1cf717055892b0aaed529f26 [file] [log] [blame]
yuezonghe824eb0c2024-06-27 02:32:26 -07001/* pkcs7.h
2 *
3 * Copyright (C) 2006-2021 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>
29#include <wolfssl/wolfcrypt/pkcs7.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
40typedef struct WOLFSSL_PKCS7
41{
42 PKCS7 pkcs7;
43 unsigned char* data;
44 int len;
45 WOLFSSL_STACK* certs;
46} WOLFSSL_PKCS7;
47
48
49WOLFSSL_API PKCS7* wolfSSL_PKCS7_new(void);
50WOLFSSL_API PKCS7_SIGNED* wolfSSL_PKCS7_SIGNED_new(void);
51WOLFSSL_API void wolfSSL_PKCS7_free(PKCS7* p7);
52WOLFSSL_API void wolfSSL_PKCS7_SIGNED_free(PKCS7_SIGNED* p7);
53WOLFSSL_API PKCS7* wolfSSL_d2i_PKCS7(PKCS7** p7, const unsigned char** in,
54 int len);
55WOLFSSL_LOCAL PKCS7* wolfSSL_d2i_PKCS7_ex(PKCS7** p7, const unsigned char** in,
56 int len, byte* content, word32 contentSz);
57WOLFSSL_API PKCS7* wolfSSL_d2i_PKCS7_bio(WOLFSSL_BIO* bio, PKCS7** p7);
58WOLFSSL_API int wolfSSL_i2d_PKCS7_bio(WOLFSSL_BIO *bio, PKCS7 *p7);
59WOLFSSL_API int wolfSSL_PKCS7_verify(PKCS7* p7, WOLFSSL_STACK* certs,
60 WOLFSSL_X509_STORE* store, WOLFSSL_BIO* in, WOLFSSL_BIO* out, int flags);
61WOLFSSL_API int wolfSSL_PKCS7_encode_certs(PKCS7* p7, WOLFSSL_STACK* certs,
62 WOLFSSL_BIO* out);
63WOLFSSL_API WOLFSSL_STACK* wolfSSL_PKCS7_to_stack(PKCS7* pkcs7);
64WOLFSSL_API WOLFSSL_STACK* wolfSSL_PKCS7_get0_signers(PKCS7* p7,
65 WOLFSSL_STACK* certs, int flags);
66WOLFSSL_API int wolfSSL_PEM_write_bio_PKCS7(WOLFSSL_BIO* bio, PKCS7* p7);
67#if defined(HAVE_SMIME)
68WOLFSSL_API PKCS7* wolfSSL_SMIME_read_PKCS7(WOLFSSL_BIO* in, WOLFSSL_BIO** bcont);
69#endif /* HAVE_SMIME */
70
71
72#define PKCS7_new wolfSSL_PKCS7_new
73#define PKCS7_SIGNED_new wolfSSL_PKCS7_SIGNED_new
74#define PKCS7_free wolfSSL_PKCS7_free
75#define PKCS7_SIGNED_free wolfSSL_PKCS7_SIGNED_free
76#define d2i_PKCS7 wolfSSL_d2i_PKCS7
77#define d2i_PKCS7_bio wolfSSL_d2i_PKCS7_bio
78#define i2d_PKCS7_bio wolfSSL_i2d_PKCS7_bio
79#define PKCS7_verify wolfSSL_PKCS7_verify
80#define PKCS7_get0_signers wolfSSL_PKCS7_get0_signers
81#define PEM_write_bio_PKCS7 wolfSSL_PEM_write_bio_PKCS7
82#if defined(HAVE_SMIME)
83#define SMIME_read_PKCS7 wolfSSL_SMIME_read_PKCS7
84#endif /* HAVE_SMIME */
85
86#endif /* OPENSSL_ALL && HAVE_PKCS7 */
87
88#ifdef __cplusplus
89 } /* extern "C" */
90#endif
91
92#endif /* WOLFSSL_PKCS7_H_ */
93