source: azure_iot_hub/trunk/wolfssl-3.15.7/wolfssl/wolfcrypt/pkcs12.h@ 388

Last change on this file since 388 was 388, checked in by coas-nagasima, 5 years ago

Azure IoT Hub Device C SDK を使ったサンプルの追加

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
  • Property svn:mime-type set to text/x-chdr
File size: 2.1 KB
Line 
1/* pkcs12.h
2 *
3 * Copyright (C) 2006-2017 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
23#ifndef WOLF_CRYPT_PKCS12_H
24#define WOLF_CRYPT_PKCS12_H
25
26#include <wolfssl/wolfcrypt/types.h>
27
28#ifdef __cplusplus
29 extern "C" {
30#endif
31
32#ifndef WOLFSSL_TYPES_DEFINED /* do not redeclare from ssl.h */
33 typedef struct WC_PKCS12 WC_PKCS12;
34#endif
35
36typedef struct WC_DerCertList { /* dereferenced in ssl.c */
37 byte* buffer;
38 word32 bufferSz;
39 struct WC_DerCertList* next;
40} WC_DerCertList;
41
42/* default values for creating PKCS12 */
43enum {
44 WC_PKCS12_ITT_DEFAULT = 2048,
45 WC_PKCS12_MAC_DEFAULT = 1,
46};
47
48WOLFSSL_API WC_PKCS12* wc_PKCS12_new(void);
49WOLFSSL_API void wc_PKCS12_free(WC_PKCS12* pkcs12);
50WOLFSSL_API int wc_d2i_PKCS12(const byte* der, word32 derSz, WC_PKCS12* pkcs12);
51WOLFSSL_API int wc_PKCS12_parse(WC_PKCS12* pkcs12, const char* psw,
52 byte** pkey, word32* pkeySz, byte** cert, word32* certSz,
53 WC_DerCertList** ca);
54WOLFSSL_API WC_PKCS12* wc_PKCS12_create(char* pass, word32 passSz,
55 char* name, byte* key, word32 keySz, byte* cert, word32 certSz,
56 WC_DerCertList* ca, int nidKey, int nidCert, int iter, int macIter,
57 int keyType, void* heap);
58
59
60WOLFSSL_LOCAL int wc_PKCS12_SetHeap(WC_PKCS12* pkcs12, void* heap);
61WOLFSSL_LOCAL void* wc_PKCS12_GetHeap(WC_PKCS12* pkcs12);
62
63WOLFSSL_LOCAL void wc_FreeCertList(WC_DerCertList* list, void* heap);
64
65#ifdef __cplusplus
66 } /* extern "C" */
67#endif
68
69#endif /* WOLF_CRYPT_PKCS12_H */
70
Note: See TracBrowser for help on using the repository browser.