nssg.h 3.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. #ifndef HEADER_CURL_NSSG_H
  2. #define HEADER_CURL_NSSG_H
  3. /***************************************************************************
  4. * _ _ ____ _
  5. * Project ___| | | | _ \| |
  6. * / __| | | | |_) | |
  7. * | (__| |_| | _ <| |___
  8. * \___|\___/|_| \_\_____|
  9. *
  10. * Copyright (C) 1998 - 2014, Daniel Stenberg, <daniel@haxx.se>, 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 http://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. /* tell NSS to close down all open information regarding connections (and
  37. thus session ID caching etc) */
  38. int Curl_nss_close_all(struct SessionHandle *data);
  39. int Curl_nss_init(void);
  40. void Curl_nss_cleanup(void);
  41. size_t Curl_nss_version(char *buffer, size_t size);
  42. int Curl_nss_check_cxn(struct connectdata *cxn);
  43. int Curl_nss_seed(struct SessionHandle *data);
  44. /* initialize NSS library if not already */
  45. CURLcode Curl_nss_force_init(struct SessionHandle *data);
  46. int Curl_nss_random(struct SessionHandle *data,
  47. unsigned char *entropy,
  48. size_t length);
  49. void Curl_nss_md5sum(unsigned char *tmp, /* input */
  50. size_t tmplen,
  51. unsigned char *md5sum, /* output */
  52. size_t md5len);
  53. /* this backend supports CURLOPT_CERTINFO */
  54. #define have_curlssl_certinfo 1
  55. /* API setup for NSS */
  56. #define curlssl_init Curl_nss_init
  57. #define curlssl_cleanup Curl_nss_cleanup
  58. #define curlssl_connect Curl_nss_connect
  59. #define curlssl_connect_nonblocking Curl_nss_connect_nonblocking
  60. /* NSS has its own session ID cache */
  61. #define curlssl_session_free(x) Curl_nop_stmt
  62. #define curlssl_close_all Curl_nss_close_all
  63. #define curlssl_close Curl_nss_close
  64. /* NSS has no shutdown function provided and thus always fail */
  65. #define curlssl_shutdown(x,y) (x=x, y=y, 1)
  66. #define curlssl_set_engine(x,y) (x=x, y=y, CURLE_NOT_BUILT_IN)
  67. #define curlssl_set_engine_default(x) (x=x, CURLE_NOT_BUILT_IN)
  68. #define curlssl_engines_list(x) (x=x, (struct curl_slist *)NULL)
  69. #define curlssl_version Curl_nss_version
  70. #define curlssl_check_cxn(x) Curl_nss_check_cxn(x)
  71. #define curlssl_data_pending(x,y) (x=x, y=y, 0)
  72. #define curlssl_random(x,y,z) Curl_nss_random(x,y,z)
  73. #define curlssl_md5sum(a,b,c,d) Curl_nss_md5sum(a,b,c,d)
  74. #define CURL_SSL_BACKEND CURLSSLBACKEND_NSS
  75. #endif /* USE_NSS */
  76. #endif /* HEADER_CURL_NSSG_H */