ssl.h
上传用户:lyxiangda
上传日期:2007-01-12
资源大小:3042k
文件大小:16k
源码类别:

CA认证

开发平台:

WINDOWS

  1. /*
  2.  * This file contains prototypes for the public SSL functions.
  3.  *
  4.  * The contents of this file are subject to the Mozilla Public
  5.  * License Version 1.1 (the "License"); you may not use this file
  6.  * except in compliance with the License. You may obtain a copy of
  7.  * the License at http://www.mozilla.org/MPL/
  8.  * 
  9.  * Software distributed under the License is distributed on an "AS
  10.  * IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
  11.  * implied. See the License for the specific language governing
  12.  * rights and limitations under the License.
  13.  * 
  14.  * The Original Code is the Netscape security libraries.
  15.  * 
  16.  * The Initial Developer of the Original Code is Netscape
  17.  * Communications Corporation.  Portions created by Netscape are 
  18.  * Copyright (C) 1994-2000 Netscape Communications Corporation.  All
  19.  * Rights Reserved.
  20.  * 
  21.  * Contributor(s):
  22.  * 
  23.  * Alternatively, the contents of this file may be used under the
  24.  * terms of the GNU General Public License Version 2 or later (the
  25.  * "GPL"), in which case the provisions of the GPL are applicable 
  26.  * instead of those above.  If you wish to allow use of your 
  27.  * version of this file only under the terms of the GPL and not to
  28.  * allow others to use your version of this file under the MPL,
  29.  * indicate your decision by deleting the provisions above and
  30.  * replace them with the notice and other provisions required by
  31.  * the GPL.  If you do not delete the provisions above, a recipient
  32.  * may use your version of this file under either the MPL or the
  33.  * GPL.
  34.  *
  35.  * $Id: ssl.h,v 1.2 2000/05/24 03:31:44 nelsonb%netscape.com Exp $
  36.  */
  37. #ifndef __ssl_h_
  38. #define __ssl_h_
  39. #include "prtypes.h"
  40. #include "prerror.h"
  41. #include "prio.h"
  42. #include "seccomon.h"
  43. #include "cert.h"
  44. #include "keyt.h"
  45. /* constant table enumerating all implemented SSL 2 and 3 cipher suites. */
  46. extern const PRUint16 SSL_ImplementedCiphers[];
  47. /* number of entries in the above table. */
  48. extern const PRUint16 SSL_NumImplementedCiphers;
  49. /* Macro to tell which ciphers in table are SSL2 vs SSL3/TLS. */
  50. #define SSL_IS_SSL2_CIPHER(which) (((which) & 0xfff0) == 0xff00)
  51. SEC_BEGIN_PROTOS
  52. /*
  53. ** Imports fd into SSL, returning a new socket.  Copies SSL configuration
  54. ** from model.
  55. */
  56. extern PRFileDesc *SSL_ImportFD(PRFileDesc *model, PRFileDesc *fd);
  57. /*
  58. ** Enable/disable an ssl mode
  59. **
  60. **  SSL_SECURITY:
  61. **  enable/disable use of SSL security protocol before connect
  62. **
  63. **  SSL_SOCKS:
  64. **  enable/disable use of socks before connect
  65. ** (No longer supported).
  66. **
  67. **  SSL_REQUEST_CERTIFICATE:
  68. **  require a certificate during secure connect
  69. */
  70. /* options */
  71. #define SSL_SECURITY 1
  72. #define SSL_SOCKS 2
  73. #define SSL_REQUEST_CERTIFICATE 3
  74. #define SSL_HANDSHAKE_AS_CLIENT 5 /* force accept to hs as client */
  75. #define SSL_HANDSHAKE_AS_SERVER 6 /* force connect to hs as server */
  76. #define SSL_ENABLE_SSL2 7 /* enable ssl v2 (on by default) */
  77. #define SSL_ENABLE_SSL3         8 /* enable ssl v3 (on by default) */
  78. #define SSL_NO_CACHE         9 /* don't use the session cache */
  79. #define SSL_REQUIRE_CERTIFICATE        10
  80. #define SSL_ENABLE_FDX                 11 /* permit simultaneous read/write */
  81. #define SSL_V2_COMPATIBLE_HELLO        12 /* send v3 client hello in v2 fmt */
  82. #define SSL_ENABLE_TLS        13 /* enable TLS (off by default) */
  83. #define SSL_ROLLBACK_DETECTION         14 /* for compatibility, default: on */
  84. /* Old deprecated function names */
  85. extern SECStatus SSL_Enable(PRFileDesc *fd, int option, PRBool on);
  86. extern SECStatus SSL_EnableDefault(int option, PRBool on);
  87. /* New function names */
  88. extern SECStatus SSL_OptionSet(PRFileDesc *fd, PRInt32 option, PRBool on);
  89. extern SECStatus SSL_OptionGet(PRFileDesc *fd, PRInt32 option, PRBool *on);
  90. extern SECStatus SSL_OptionSetDefault(PRInt32 option, PRBool on);
  91. extern SECStatus SSL_OptionGetDefault(PRInt32 option, PRBool *on);
  92. extern SECStatus SSL_CertDBHandleSet(PRFileDesc *fd, CERTCertDBHandle *dbHandle);
  93. /*
  94. ** Control ciphers that SSL uses. If on is non-zero then the named cipher
  95. ** is enabled, otherwise it is disabled. 
  96. ** The "cipher" values are defined in sslproto.h (the SSL_EN_* values).
  97. ** EnableCipher records user preferences.
  98. ** SetPolicy sets the policy according to the policy module.
  99. */
  100. /* Old deprecated function names */
  101. extern SECStatus SSL_EnableCipher(long which, PRBool enabled);
  102. extern SECStatus SSL_SetPolicy(long which, int policy);
  103. /* New function names */
  104. extern SECStatus SSL_CipherPrefSet(PRFileDesc *fd, PRInt32 cipher, PRBool enabled);
  105. extern SECStatus SSL_CipherPrefGet(PRFileDesc *fd, PRInt32 cipher, PRBool *enabled);
  106. extern SECStatus SSL_CipherPrefSetDefault(PRInt32 cipher, PRBool enabled);
  107. extern SECStatus SSL_CipherPrefGetDefault(PRInt32 cipher, PRBool *enabled);
  108. extern SECStatus SSL_CipherPolicySet(PRInt32 cipher, PRInt32 policy);
  109. extern SECStatus SSL_CipherPolicyGet(PRInt32 cipher, PRInt32 *policy);
  110. /* Values for "policy" argument to SSL_PolicySet */
  111. /* Values returned by SSL_CipherPolicyGet. */
  112. #define SSL_NOT_ALLOWED  0       /* or invalid or unimplemented */
  113. #define SSL_ALLOWED  1
  114. #define SSL_RESTRICTED  2       /* only with "Step-Up" certs. */
  115. /*
  116. ** Reset the handshake state for fd. This will make the complete SSL
  117. ** handshake protocol execute from the ground up on the next i/o
  118. ** operation.
  119. */
  120. extern SECStatus SSL_ResetHandshake(PRFileDesc *fd, PRBool asServer);
  121. /*
  122. ** Force the handshake for fd to complete immediately.  This blocks until
  123. ** the complete SSL handshake protocol is finished.
  124. */
  125. extern int SSL_ForceHandshake(PRFileDesc *fd);
  126. /*
  127. ** Query security status of socket. *on is set to one if security is
  128. ** enabled. *keySize will contain the stream key size used. *issuer will
  129. ** contain the RFC1485 verison of the name of the issuer of the
  130. ** certificate at the other end of the connection. For a client, this is
  131. ** the issuer of the server's certificate; for a server, this is the
  132. ** issuer of the client's certificate (if any). Subject is the subject of
  133. ** the other end's certificate. The pointers can be zero if the desired
  134. ** data is not needed.  All strings returned by this function are owned
  135. ** by SSL, and will be freed when the socket is closed.
  136. */
  137. extern int SSL_SecurityStatus(PRFileDesc *fd, int *on, char **cipher,
  138.       int *keySize, int *secretKeySize,
  139.       char **issuer, char **subject);
  140. /* Values for "on" */
  141. #define SSL_SECURITY_STATUS_NOOPT -1
  142. #define SSL_SECURITY_STATUS_OFF 0
  143. #define SSL_SECURITY_STATUS_ON_HIGH 1
  144. #define SSL_SECURITY_STATUS_ON_LOW 2
  145. #define SSL_SECURITY_STATUS_FORTEZZA 3
  146. /*
  147. ** Return the certificate for our SSL peer. If the client calls this
  148. ** it will always return the server's certificate. If the server calls
  149. ** this, it may return NULL if client authentication is not enabled or
  150. ** if the client had no certificate when asked.
  151. ** "fd" the socket "file" descriptor
  152. */
  153. extern CERTCertificate *SSL_PeerCertificate(PRFileDesc *fd);
  154. /*
  155. ** Authenticate certificate hook. Called when a certificate comes in
  156. ** (because of SSL_REQUIRE_CERTIFICATE in SSL_Enable) to authenticate the
  157. ** certificate.
  158. */
  159. typedef int (*SSLAuthCertificate)(void *arg, PRFileDesc *fd, PRBool checkSig,
  160.   PRBool isServer);
  161. extern int SSL_AuthCertificateHook(PRFileDesc *fd, SSLAuthCertificate f,
  162.    void *arg);
  163. /* An implementation of the certificate authentication hook */
  164. extern int SSL_AuthCertificate(void *arg, PRFileDesc *fd, PRBool checkSig,
  165.        PRBool isServer);
  166. /*
  167.  * Prototype for SSL callback to get client auth data from the application.
  168.  * arg - application passed argument
  169.  * caNames - pointer to distinguished names of CAs that the server likes
  170.  * pRetCert - pointer to pointer to cert, for return of cert
  171.  * pRetKey - pointer to key pointer, for return of key
  172.  */
  173. typedef int (*SSLGetClientAuthData)(void *arg, PRFileDesc *fd,
  174.     CERTDistNames *caNames,
  175.     CERTCertificate **pRetCert,/*return */
  176.     SECKEYPrivateKey **pRetKey);/* return */
  177. /*
  178.  * Set the client side callback for SSL to retrieve user's private key
  179.  * and certificate.
  180.  * fd - the file descriptor for the connection in question
  181.  * f - the application's callback that delivers the key and cert
  182.  * a - application specific data
  183.  */
  184. extern int SSL_GetClientAuthDataHook(PRFileDesc *fd, SSLGetClientAuthData f,
  185.      void *a);
  186. /*
  187.  * Set the client side argument for SSL to retrieve PKCS #11 pin.
  188.  * fd - the file descriptor for the connection in question
  189.  * a - pkcs11 application specific data
  190.  */
  191. extern int SSL_SetPKCS11PinArg(PRFileDesc *fd, void *a);
  192. /*
  193. ** This is a callback for dealing with server certs that are not authenticated
  194. ** by the client.  The client app can decide that it actually likes the
  195. ** cert by some external means and restart the connection.
  196. */
  197. typedef int (*SSLBadCertHandler)(void *arg, PRFileDesc *fd);
  198. extern int SSL_BadCertHook(PRFileDesc *fd, SSLBadCertHandler f, void *arg);
  199. /*
  200. ** Configure ssl for running a secure server. Needs the
  201. ** certificate for the server and the servers private key. The arguments
  202. ** are copied.
  203. */
  204. /* Key Exchange values */
  205. typedef enum {
  206.     kt_null = 0,
  207.     kt_rsa,
  208.     kt_dh,
  209.     kt_fortezza,
  210.     kt_kea_size
  211. } SSLKEAType;
  212. extern SECStatus SSL_ConfigSecureServer(PRFileDesc *fd, CERTCertificate *cert,
  213. SECKEYPrivateKey *key, SSLKEAType kea);
  214. /*
  215. ** Configure a secure servers session-id cache. Define the maximum number
  216. ** of entries in the cache, the longevity of the entires, and the directory
  217. ** where the cache files will be placed.  These values can be zero, and 
  218. ** if so, the implementation will choose defaults.
  219. ** This version of the function is for use in applications that have only one 
  220. ** process that uses the cache (even if that process has multiple threads).
  221. */
  222. extern int SSL_ConfigServerSessionIDCache(int      maxCacheEntries,
  223.   PRUint32 timeout,
  224.   PRUint32 ssl3_timeout,
  225.     const char *   directory);
  226. /*
  227. ** Like SSL_ConfigServerSessionIDCache, with one important difference.
  228. ** If the application will run multiple processes (as opposed to, or in 
  229. ** addition to multiple threads), then it must call this function, instead
  230. ** of calling SSL_ConfigServerSessionIDCache().
  231. ** This has nothing to do with the number of processORs, only processEs.
  232. ** This function sets up a Server Session ID (SID) cache that is safe for
  233. ** access by multiple processes on the same system.
  234. */
  235. extern int SSL_ConfigMPServerSIDCache(int      maxCacheEntries, 
  236.       PRUint32 timeout,
  237.               PRUint32 ssl3_timeout, 
  238.                 const char *   directory);
  239. /* environment variable set by SSL_ConfigMPServerSIDCache, and queried by
  240.  * SSL_InheritMPServerSIDCache when envString is NULL.
  241.  */
  242. #define SSL_ENV_VAR_NAME            "SSL_INHERITANCE"
  243. /* called in child to inherit SID Cache variables. 
  244.  * If envString is NULL, this function will use the value of the environment
  245.  * variable "SSL_INHERITANCE", otherwise the string value passed in will be 
  246.  * used.
  247.  */
  248. extern SECStatus SSL_InheritMPServerSIDCache(const char * envString);
  249. /*
  250. ** Set the callback on a particular socket that gets called when we finish
  251. ** performing a handshake.
  252. */
  253. typedef void (*SSLHandshakeCallback)(PRFileDesc *fd, void *client_data);
  254. extern int SSL_HandshakeCallback(PRFileDesc *fd, SSLHandshakeCallback cb,
  255.  void *client_data);
  256. /*
  257. ** For the server, request a new handshake.  For the client, begin a new
  258. ** handshake.  If flushCache is non-zero, the SSL3 cache entry will be 
  259. ** flushed first, ensuring that a full SSL handshake will be done.
  260. ** If flushCache is zero, and an SSL connection is established, it will 
  261. ** do the much faster session restart handshake.  This will change the 
  262. ** session keys without doing another private key operation.
  263. */
  264. extern int SSL_ReHandshake(PRFileDesc *fd, PRBool flushCache);
  265. /*
  266. ** For the server, request a new handshake.  For the client, begin a new
  267. ** handshake.  Flushes SSL3 session cache entry first, ensuring that a 
  268. ** full handshake will be done.  
  269. ** This call is equivalent to SSL_ReHandshake(fd, PR_TRUE)
  270. */
  271. extern int SSL_RedoHandshake(PRFileDesc *fd);
  272. /*
  273. ** Return 1 if the socket is direct, 0 if not, -1 on error
  274. */
  275. extern int SSL_CheckDirectSock(PRFileDesc *s);
  276. /*
  277. ** A cousin to SSL_Bind, this takes an extra arg: dsthost, so we can
  278. ** set up sockd connection. This should be used with socks enabled.
  279. */
  280. extern int SSL_BindForSockd(PRFileDesc *s, PRNetAddr *sa, long dsthost);
  281. /*
  282. ** Configure ssl for using socks.
  283. */
  284. extern SECStatus SSL_ConfigSockd(PRFileDesc *fd, PRUint32 host, PRUint16 port);
  285. /*
  286.  * Allow the application to pass a URL or hostname into the SSL library
  287.  */
  288. extern int SSL_SetURL(PRFileDesc *fd, const char *url);
  289. /*
  290. ** Return the number of bytes that SSL has waiting in internal buffers.
  291. ** Return 0 if security is not enabled.
  292. */
  293. extern int SSL_DataPending(PRFileDesc *fd);
  294. /*
  295. ** Invalidate the SSL session associated with fd.
  296. */
  297. extern int SSL_InvalidateSession(PRFileDesc *fd);
  298. /*
  299. ** Return a SECItem containing the SSL session ID associated with the fd.
  300. */
  301. extern SECItem *SSL_GetSessionID(PRFileDesc *fd);
  302. /*
  303. ** Clear out the SSL session cache.
  304. */
  305. extern void SSL_ClearSessionCache(void);
  306. /*
  307. ** Set peer information so we can correctly look up SSL session later.
  308. ** You only have to do this if you're tunneling through a proxy.
  309. */
  310. extern int SSL_SetSockPeerID(PRFileDesc *fd, char *peerID);
  311. /*
  312. ** Read the socks config file.  You must do this before doing anything with
  313. ** socks.
  314. */
  315. extern int SSL_ReadSocksConfFile(PRFileDesc *fp);
  316. /*
  317. ** Reveal the security information for the peer. 
  318. */
  319. extern CERTCertificate * SSL_RevealCert(PRFileDesc * socket);
  320. extern void * SSL_RevealPinArg(PRFileDesc * socket);
  321. extern char * SSL_RevealURL(PRFileDesc * socket);
  322. /* This callback may be passed to the SSL library via a call to
  323.  * SSL_GetClientAuthDataHook() for each SSL client socket.
  324.  * It will be invoked when SSL needs to know what certificate and private key
  325.  * (if any) to use to respond to a request for client authentication.
  326.  * If arg is non-NULL, it is a pointer to a NULL-terminated string containing
  327.  * the nickname of the cert/key pair to use.
  328.  * If arg is NULL, this function will search the cert and key databases for 
  329.  * a suitable match and send it if one is found.
  330.  */
  331. extern SECStatus
  332. NSS_GetClientAuthData(void *                       arg,
  333.                       PRFileDesc *                 socket,
  334.                       struct CERTDistNamesStr *    caNames,
  335.                       struct CERTCertificateStr ** pRetCert,
  336.                       struct SECKEYPrivateKeyStr **pRetKey);
  337. /*
  338.  * Look to see if any of the signers in the cert chain for "cert" are found
  339.  * in the list of caNames.  
  340.  * Returns SECSuccess if so, SECFailure if not.
  341.  * Used by NSS_GetClientAuthData.  May be used by other callback functions.
  342.  */
  343. extern SECStatus NSS_CmpCertChainWCANames(CERTCertificate *cert, 
  344.                                           CERTDistNames *caNames);
  345. /* 
  346.  * Returns key exchange type of the keys in an SSL server certificate.
  347.  */
  348. extern SSLKEAType NSS_FindCertKEAType(CERTCertificate * cert);
  349. /* Set cipher policies to a predefined Domestic (U.S.A.) policy.
  350.  * This essentially enables all supported ciphers.
  351.  */
  352. extern SECStatus NSS_SetDomesticPolicy(void);
  353. /* Set cipher policies to a predefined Policy that is exportable from the USA
  354.  *   according to present U.S. policies as we understand them.
  355.  * See documentation for the list.
  356.  * Note that your particular application program may be able to obtain
  357.  *   an export license with more or fewer capabilities than those allowed
  358.  *   by this function.  In that case, you should use SSL_SetPolicy()
  359.  *   to explicitly allow those ciphers you may legally export.
  360.  */
  361. extern SECStatus NSS_SetExportPolicy(void);
  362. /* Set cipher policies to a predefined Policy that is exportable from the USA
  363.  *   according to present U.S. policies as we understand them, and that the 
  364.  *   nation of France will permit to be imported into their country.
  365.  * See documentation for the list.
  366.  */
  367. extern SECStatus NSS_SetFrancePolicy(void);
  368. SEC_END_PROTOS
  369. #endif /* __ssl_h_ */