wolf SSL / wolfSSL-TLS13-Beta

Fork of wolfSSL by wolf SSL

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-2016 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 <wolfssl/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 
00043 
00044 WOLFSSL_API WC_PKCS12* wc_PKCS12_new(void);
00045 WOLFSSL_API void wc_PKCS12_free(WC_PKCS12* pkcs12);
00046 WOLFSSL_API int wc_d2i_PKCS12(const byte* der, word32 derSz, WC_PKCS12* pkcs12);
00047 WOLFSSL_API int wc_PKCS12_parse(WC_PKCS12* pkcs12, const char* psw,
00048         byte** pkey, word32* pkeySz, byte** cert, word32* certSz,
00049         WC_DerCertList** ca);
00050 
00051 WOLFSSL_LOCAL int wc_PKCS12_SetHeap(WC_PKCS12* pkcs12, void* heap);
00052 WOLFSSL_LOCAL void* wc_PKCS12_GetHeap(WC_PKCS12* pkcs12);
00053 
00054 
00055 #ifdef __cplusplus
00056     } /* extern "C" */
00057 #endif
00058 
00059 #endif /* WOLF_CRYPT_PKCS12_H */
00060 
00061