pkcs12.h 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. /* pkcs12.h
  2. *
  3. * Copyright (C) 2006-2022 wolfSSL Inc.
  4. *
  5. * This file is part of wolfSSL.
  6. *
  7. * wolfSSL is free software; you can redistribute it and/or modify
  8. * it under the terms of the GNU General Public License as published by
  9. * the Free Software Foundation; either version 2 of the License, or
  10. * (at your option) any later version.
  11. *
  12. * wolfSSL is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. * GNU General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU General Public License
  18. * along with this program; if not, write to the Free Software
  19. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1335, USA
  20. */
  21. #ifndef WOLF_CRYPT_PKCS12_H
  22. #define WOLF_CRYPT_PKCS12_H
  23. #include <wolfssl/wolfcrypt/types.h>
  24. #ifdef __cplusplus
  25. extern "C" {
  26. #endif
  27. #ifndef WOLFSSL_TYPES_DEFINED /* do not redeclare from ssl.h */
  28. typedef struct WC_PKCS12 WC_PKCS12;
  29. #endif
  30. typedef struct WC_DerCertList { /* dereferenced in ssl.c */
  31. byte* buffer;
  32. word32 bufferSz;
  33. struct WC_DerCertList* next;
  34. } WC_DerCertList;
  35. /* default values for creating PKCS12 */
  36. enum {
  37. WC_PKCS12_ITT_DEFAULT = 2048,
  38. WC_PKCS12_VERSION_DEFAULT = 3,
  39. WC_PKCS12_MAC_DEFAULT = 1,
  40. };
  41. WOLFSSL_API WC_PKCS12* wc_PKCS12_new(void);
  42. WOLFSSL_API void wc_PKCS12_free(WC_PKCS12* pkcs12);
  43. WOLFSSL_API int wc_d2i_PKCS12(const byte* der, word32 derSz, WC_PKCS12* pkcs12);
  44. #ifndef NO_FILESYSTEM
  45. WOLFSSL_API int wc_d2i_PKCS12_fp(const char* file, WC_PKCS12** pkcs12);
  46. #endif
  47. WOLFSSL_API int wc_i2d_PKCS12(WC_PKCS12* pkcs12, byte** der, int* derSz);
  48. WOLFSSL_API int wc_PKCS12_parse(WC_PKCS12* pkcs12, const char* psw,
  49. byte** pkey, word32* pkeySz, byte** cert, word32* certSz,
  50. WC_DerCertList** ca);
  51. WOLFSSL_LOCAL int wc_PKCS12_verify_ex(WC_PKCS12* pkcs12,
  52. const byte* psw, word32 pswSz);
  53. WOLFSSL_API WC_PKCS12* wc_PKCS12_create(char* pass, word32 passSz,
  54. char* name, byte* key, word32 keySz, byte* cert, word32 certSz,
  55. WC_DerCertList* ca, int nidKey, int nidCert, int iter, int macIter,
  56. int keyType, void* heap);
  57. WOLFSSL_LOCAL int wc_PKCS12_SetHeap(WC_PKCS12* pkcs12, void* heap);
  58. WOLFSSL_LOCAL void* wc_PKCS12_GetHeap(WC_PKCS12* pkcs12);
  59. WOLFSSL_LOCAL void wc_FreeCertList(WC_DerCertList* list, void* heap);
  60. #ifdef __cplusplus
  61. } /* extern "C" */
  62. #endif
  63. #endif /* WOLF_CRYPT_PKCS12_H */