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 for openssl */
00002 
00003 #include <wolfssl/wolfcrypt/pkcs12.h>
00004 
00005 /* wolfCrypt level does not make use of ssl.h */
00006 #define PKCS12         WC_PKCS12
00007 #define PKCS12_new     wc_PKCS12_new
00008 #define PKCS12_free    wc_PKCS12_free
00009 
00010 /* wolfSSL level using structs from ssl.h and calls down to wolfCrypt */
00011 #define d2i_PKCS12_bio wolfSSL_d2i_PKCS12_bio
00012 #define PKCS12_parse   wolfSSL_PKCS12_parse
00013 #define PKCS12_PBE_add wolfSSL_PKCS12_PBE_add
00014 
00015