wolfSSL SSL/TLS library, support up to TLS1.3

Dependents:   CyaSSL-Twitter-OAuth4Tw Example-client-tls-cert TwitterReader TweetTest ... more

Committer:
wolfSSL
Date:
Tue Aug 22 10:48:22 2017 +0000
Revision:
13:f67a6c6013ca
Parent:
11:cee25a834751
wolfSSL3.12.0 with TLS1.3

Who changed what in which revision?

UserRevisionLine numberNew contents of line
wolfSSL 11:cee25a834751 1 /* pkcs12.h for openssl */
wolfSSL 11:cee25a834751 2
wolfSSL 11:cee25a834751 3 #include <wolfssl/wolfcrypt/pkcs12.h>
wolfSSL 11:cee25a834751 4
wolfSSL 11:cee25a834751 5 /* wolfCrypt level does not make use of ssl.h */
wolfSSL 11:cee25a834751 6 #define PKCS12 WC_PKCS12
wolfSSL 11:cee25a834751 7 #define PKCS12_new wc_PKCS12_new
wolfSSL 11:cee25a834751 8 #define PKCS12_free wc_PKCS12_free
wolfSSL 11:cee25a834751 9
wolfSSL 11:cee25a834751 10 /* wolfSSL level using structs from ssl.h and calls down to wolfCrypt */
wolfSSL 11:cee25a834751 11 #define d2i_PKCS12_bio wolfSSL_d2i_PKCS12_bio
wolfSSL 11:cee25a834751 12 #define PKCS12_parse wolfSSL_PKCS12_parse
wolfSSL 11:cee25a834751 13 #define PKCS12_PBE_add wolfSSL_PKCS12_PBE_add
wolfSSL 11:cee25a834751 14
wolfSSL 11:cee25a834751 15