wolfSSL 3.11.1 for TLS1.3 beta
Fork of wolfSSL by
wolfssl/openssl/pkcs12.h@11:cee25a834751, 2017-05-30 (annotated)
- Committer:
- wolfSSL
- Date:
- Tue May 30 01:44:10 2017 +0000
- Revision:
- 11:cee25a834751
wolfSSL 3.11.0
Who changed what in which revision?
User | Revision | Line number | New 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 |