build: make use of 93 lib/*.c renamed files
[platform/upstream/curl.git] / lib / curl_nssg.h
1 #ifndef HEADER_CURL_NSSG_H
2 #define HEADER_CURL_NSSG_H
3 /***************************************************************************
4  *                                  _   _ ____  _
5  *  Project                     ___| | | |  _ \| |
6  *                             / __| | | | |_) | |
7  *                            | (__| |_| |  _ <| |___
8  *                             \___|\___/|_| \_\_____|
9  *
10  * Copyright (C) 1998 - 2013, 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
26 #ifdef USE_NSS
27 /*
28  * This header should only be needed to get included by curl_sslgen.c and
29  * curl_nss.c
30  */
31
32 #include "curl_urldata.h"
33
34 CURLcode Curl_nss_connect(struct connectdata *conn, int sockindex);
35 CURLcode Curl_nss_connect_nonblocking(struct connectdata *conn,
36                                       int sockindex,
37                                       bool *done);
38 /* close a SSL connection */
39 void Curl_nss_close(struct connectdata *conn, int sockindex);
40
41 /* tell NSS to close down all open information regarding connections (and
42    thus session ID caching etc) */
43 int Curl_nss_close_all(struct SessionHandle *data);
44
45 int Curl_nss_init(void);
46 void Curl_nss_cleanup(void);
47
48 size_t Curl_nss_version(char *buffer, size_t size);
49 int Curl_nss_check_cxn(struct connectdata *cxn);
50 int Curl_nss_seed(struct SessionHandle *data);
51
52 /* initialize NSS library if not already */
53 CURLcode Curl_nss_force_init(struct SessionHandle *data);
54
55 void Curl_nss_random(struct SessionHandle *data,
56                      unsigned char *entropy,
57                      size_t length);
58
59 void Curl_nss_md5sum(unsigned char *tmp, /* input */
60                      size_t tmplen,
61                      unsigned char *md5sum, /* output */
62                      size_t md5len);
63
64 /* API setup for NSS */
65 #define curlssl_init Curl_nss_init
66 #define curlssl_cleanup Curl_nss_cleanup
67 #define curlssl_connect Curl_nss_connect
68
69 /* NSS has its own session ID cache */
70 #define curlssl_session_free(x) Curl_nop_stmt
71 #define curlssl_close_all Curl_nss_close_all
72 #define curlssl_close Curl_nss_close
73 /* NSS has no shutdown function provided and thus always fail */
74 #define curlssl_shutdown(x,y) (x=x, y=y, 1)
75 #define curlssl_set_engine(x,y) (x=x, y=y, CURLE_NOT_BUILT_IN)
76 #define curlssl_set_engine_default(x) (x=x, CURLE_NOT_BUILT_IN)
77 #define curlssl_engines_list(x) (x=x, (struct curl_slist *)NULL)
78 #define curlssl_version Curl_nss_version
79 #define curlssl_check_cxn(x) Curl_nss_check_cxn(x)
80 #define curlssl_data_pending(x,y) (x=x, y=y, 0)
81 #define curlssl_random(x,y,z) Curl_nss_random(x,y,z)
82 #define curlssl_md5sum(a,b,c,d) Curl_nss_md5sum(a,b,c,d)
83
84 #endif /* USE_NSS */
85 #endif /* HEADER_CURL_NSSG_H */