Xuyi Wang / wolfcrypt

Dependents:   OS

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers pkcs12.h Source File

pkcs12.h

00001 /* pkcs12.h
00002  *
00003  * Copyright (C) 2006-2017 wolfSSL Inc.
00004  *
00005  * This file is part of wolfSSL.
00006  *
00007  * wolfSSL is free software; you can redistribute it and/or modify
00008  * it under the terms of the GNU General Public License as published by
00009  * the Free Software Foundation; either version 2 of the License, or
00010  * (at your option) any later version.
00011  *
00012  * wolfSSL is distributed in the hope that it will be useful,
00013  * but WITHOUT ANY WARRANTY; without even the implied warranty of
00014  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
00015  * GNU General Public License for more details.
00016  *
00017  * You should have received a copy of the GNU General Public License
00018  * along with this program; if not, write to the Free Software
00019  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1335, USA
00020  */
00021 
00022 
00023 #ifndef WOLF_CRYPT_PKCS12_H
00024 #define WOLF_CRYPT_PKCS12_H
00025 
00026 #include <wolfcrypt/types.h>
00027 
00028 #ifdef __cplusplus
00029     extern "C" {
00030 #endif
00031 
00032 #ifndef WOLFSSL_TYPES_DEFINED /* do not redeclare from ssl.h */
00033     typedef struct WC_PKCS12 WC_PKCS12;
00034 #endif
00035 
00036 typedef struct WC_DerCertList { /* dereferenced in ssl.c */
00037     byte* buffer;
00038     word32 bufferSz;
00039     struct WC_DerCertList* next;
00040 } WC_DerCertList;
00041 
00042 /* default values for creating PKCS12 */
00043 enum {
00044     WC_PKCS12_ITT_DEFAULT = 2048,
00045     WC_PKCS12_MAC_DEFAULT = 1,
00046 };
00047 
00048 WOLFSSL_API WC_PKCS12* wc_PKCS12_new(void);
00049 WOLFSSL_API void wc_PKCS12_free(WC_PKCS12* pkcs12);
00050 WOLFSSL_API int wc_d2i_PKCS12(const byte* der, word32 derSz, WC_PKCS12* pkcs12);
00051 WOLFSSL_API int wc_PKCS12_parse(WC_PKCS12* pkcs12, const char* psw,
00052         byte** pkey, word32* pkeySz, byte** cert, word32* certSz,
00053         WC_DerCertList** ca);
00054 WOLFSSL_API WC_PKCS12* wc_PKCS12_create(char* pass, word32 passSz,
00055         char* name, byte* key, word32 keySz, byte* cert, word32 certSz,
00056         WC_DerCertList* ca, int nidKey, int nidCert, int iter, int macIter,
00057         int keyType, void* heap);
00058 
00059 
00060 WOLFSSL_LOCAL int wc_PKCS12_SetHeap(WC_PKCS12* pkcs12, void* heap);
00061 WOLFSSL_LOCAL void* wc_PKCS12_GetHeap(WC_PKCS12* pkcs12);
00062 
00063 WOLFSSL_LOCAL void wc_FreeCertList(WC_DerCertList* list, void* heap);
00064 
00065 #ifdef __cplusplus
00066     } /* extern "C" */
00067 #endif
00068 
00069 #endif /* WOLF_CRYPT_PKCS12_H */
00070 
00071