cyassl.h 3.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. #ifndef HEADER_CURL_CYASSL_H
  2. #define HEADER_CURL_CYASSL_H
  3. /***************************************************************************
  4. * _ _ ____ _
  5. * Project ___| | | | _ \| |
  6. * / __| | | | |_) | |
  7. * | (__| |_| | _ <| |___
  8. * \___|\___/|_| \_\_____|
  9. *
  10. * Copyright (C) 1998 - 2016, Daniel Stenberg, <[email protected]>, et al.
  11. *
  12. * This software is licensed as described in the file COPYING, which
  13. * you should have received as part of this distribution. The terms
  14. * are also available at https://curl.haxx.se/docs/copyright.html.
  15. *
  16. * You may opt to use, copy, modify, merge, publish, distribute and/or sell
  17. * copies of the Software, and permit persons to whom the Software is
  18. * furnished to do so, under the terms of the COPYING file.
  19. *
  20. * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
  21. * KIND, either express or implied.
  22. *
  23. ***************************************************************************/
  24. #include "curl_setup.h"
  25. #ifdef USE_CYASSL
  26. /* KEEP_PEER_CERT is a product of the presence of build time symbol
  27. OPENSSL_EXTRA without NO_CERTS, depending on the version. KEEP_PEER_CERT is
  28. in wolfSSL's settings.h, and the latter two are build time symbols in
  29. options.h. */
  30. #ifndef KEEP_PEER_CERT
  31. #if defined(HAVE_CYASSL_GET_PEER_CERTIFICATE) || \
  32. defined(HAVE_WOLFSSL_GET_PEER_CERTIFICATE) || \
  33. (defined(OPENSSL_EXTRA) && !defined(NO_CERTS))
  34. #define KEEP_PEER_CERT
  35. #endif
  36. #endif
  37. CURLcode Curl_cyassl_connect(struct connectdata *conn, int sockindex);
  38. bool Curl_cyassl_data_pending(const struct connectdata* conn, int connindex);
  39. int Curl_cyassl_shutdown(struct connectdata* conn, int sockindex);
  40. /* close a SSL connection */
  41. void Curl_cyassl_close(struct connectdata *conn, int sockindex);
  42. void Curl_cyassl_session_free(void *ptr);
  43. size_t Curl_cyassl_version(char *buffer, size_t size);
  44. int Curl_cyassl_shutdown(struct connectdata *conn, int sockindex);
  45. int Curl_cyassl_init(void);
  46. CURLcode Curl_cyassl_connect_nonblocking(struct connectdata *conn,
  47. int sockindex,
  48. bool *done);
  49. int Curl_cyassl_random(struct Curl_easy *data,
  50. unsigned char *entropy,
  51. size_t length);
  52. void Curl_cyassl_sha256sum(const unsigned char *tmp, /* input */
  53. size_t tmplen,
  54. unsigned char *sha256sum, /* output */
  55. size_t unused);
  56. /* Set the API backend definition to Schannel */
  57. #define CURL_SSL_BACKEND CURLSSLBACKEND_CYASSL
  58. /* this backend supports CURLOPT_SSL_CTX_* */
  59. #define have_curlssl_ssl_ctx 1
  60. #ifdef KEEP_PEER_CERT
  61. /* this backend supports CURLOPT_PINNEDPUBLICKEY */
  62. #define have_curlssl_pinnedpubkey 1
  63. #endif
  64. /* API setup for CyaSSL */
  65. #define curlssl_init Curl_cyassl_init
  66. #define curlssl_cleanup() Curl_nop_stmt
  67. #define curlssl_connect Curl_cyassl_connect
  68. #define curlssl_connect_nonblocking Curl_cyassl_connect_nonblocking
  69. #define curlssl_session_free(x) Curl_cyassl_session_free(x)
  70. #define curlssl_close_all(x) ((void)x)
  71. #define curlssl_close Curl_cyassl_close
  72. #define curlssl_shutdown(x,y) Curl_cyassl_shutdown(x,y)
  73. #define curlssl_set_engine(x,y) ((void)x, (void)y, CURLE_NOT_BUILT_IN)
  74. #define curlssl_set_engine_default(x) ((void)x, CURLE_NOT_BUILT_IN)
  75. #define curlssl_engines_list(x) ((void)x, (struct curl_slist *)NULL)
  76. #define curlssl_version Curl_cyassl_version
  77. #define curlssl_check_cxn(x) ((void)x, -1)
  78. #define curlssl_data_pending(x,y) Curl_cyassl_data_pending(x,y)
  79. #define curlssl_random(x,y,z) Curl_cyassl_random(x,y,z)
  80. #define curlssl_sha256sum(a,b,c,d) Curl_cyassl_sha256sum(a,b,c,d)
  81. #endif /* USE_CYASSL */
  82. #endif /* HEADER_CURL_CYASSL_H */