nssg.h 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. #ifndef HEADER_CURL_NSSG_H
  2. #define HEADER_CURL_NSSG_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_NSS
  26. /*
  27. * This header should only be needed to get included by vtls.c and nss.c
  28. */
  29. #include "urldata.h"
  30. CURLcode Curl_nss_connect(struct connectdata *conn, int sockindex);
  31. CURLcode Curl_nss_connect_nonblocking(struct connectdata *conn,
  32. int sockindex,
  33. bool *done);
  34. /* close a SSL connection */
  35. void Curl_nss_close(struct connectdata *conn, int sockindex);
  36. int Curl_nss_init(void);
  37. void Curl_nss_cleanup(void);
  38. size_t Curl_nss_version(char *buffer, size_t size);
  39. int Curl_nss_check_cxn(struct connectdata *cxn);
  40. int Curl_nss_seed(struct Curl_easy *data);
  41. /* initialize NSS library if not already */
  42. CURLcode Curl_nss_force_init(struct Curl_easy *data);
  43. int Curl_nss_random(struct Curl_easy *data,
  44. unsigned char *entropy,
  45. size_t length);
  46. void Curl_nss_md5sum(unsigned char *tmp, /* input */
  47. size_t tmplen,
  48. unsigned char *md5sum, /* output */
  49. size_t md5len);
  50. void Curl_nss_sha256sum(const unsigned char *tmp, /* input */
  51. size_t tmplen,
  52. unsigned char *sha256sum, /* output */
  53. size_t sha256len);
  54. bool Curl_nss_cert_status_request(void);
  55. bool Curl_nss_false_start(void);
  56. /* Support HTTPS-proxy */
  57. #define HTTPS_PROXY_SUPPORT 1
  58. /* Set the API backend definition to NSS */
  59. #define CURL_SSL_BACKEND CURLSSLBACKEND_NSS
  60. /* this backend supports the CAPATH option */
  61. #define have_curlssl_ca_path 1
  62. /* this backend supports CURLOPT_CERTINFO */
  63. #define have_curlssl_certinfo 1
  64. /* this backends supports CURLOPT_PINNEDPUBLICKEY */
  65. #define have_curlssl_pinnedpubkey 1
  66. /* API setup for NSS */
  67. #define curlssl_init Curl_nss_init
  68. #define curlssl_cleanup Curl_nss_cleanup
  69. #define curlssl_connect Curl_nss_connect
  70. #define curlssl_connect_nonblocking Curl_nss_connect_nonblocking
  71. /* NSS has its own session ID cache */
  72. #define curlssl_session_free(x) Curl_nop_stmt
  73. #define curlssl_close_all(x) ((void)x)
  74. #define curlssl_close Curl_nss_close
  75. /* NSS has no shutdown function provided and thus always fail */
  76. #define curlssl_shutdown(x,y) ((void)x, (void)y, 1)
  77. #define curlssl_set_engine(x,y) ((void)x, (void)y, CURLE_NOT_BUILT_IN)
  78. #define curlssl_set_engine_default(x) ((void)x, CURLE_NOT_BUILT_IN)
  79. #define curlssl_engines_list(x) ((void)x, (struct curl_slist *)NULL)
  80. #define curlssl_version Curl_nss_version
  81. #define curlssl_check_cxn(x) Curl_nss_check_cxn(x)
  82. #define curlssl_data_pending(x,y) ((void)x, (void)y, 0)
  83. #define curlssl_random(x,y,z) Curl_nss_random(x,y,z)
  84. #define curlssl_md5sum(a,b,c,d) Curl_nss_md5sum(a,b,c,d)
  85. #define curlssl_sha256sum(a,b,c,d) Curl_nss_sha256sum(a,b,c,d)
  86. #define curlssl_cert_status_request() Curl_nss_cert_status_request()
  87. #define curlssl_false_start() Curl_nss_false_start()
  88. #endif /* USE_NSS */
  89. #endif /* HEADER_CURL_NSSG_H */