/gecko_api/include/ssl.h

http://firefox-mac-pdf.googlecode.com/ · C Header · 512 lines · 157 code · 63 blank · 292 comment · 3 complexity · b0f8ac2a59d8f0b4b2dd93458cf7c0b8 MD5 · raw file

  1. /*
  2. * This file contains prototypes for the public SSL functions.
  3. *
  4. * ***** BEGIN LICENSE BLOCK *****
  5. * Version: MPL 1.1/GPL 2.0/LGPL 2.1
  6. *
  7. * The contents of this file are subject to the Mozilla Public License Version
  8. * 1.1 (the "License"); you may not use this file except in compliance with
  9. * the License. You may obtain a copy of the License at
  10. * http://www.mozilla.org/MPL/
  11. *
  12. * Software distributed under the License is distributed on an "AS IS" basis,
  13. * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
  14. * for the specific language governing rights and limitations under the
  15. * License.
  16. *
  17. * The Original Code is the Netscape security libraries.
  18. *
  19. * The Initial Developer of the Original Code is
  20. * Netscape Communications Corporation.
  21. * Portions created by the Initial Developer are Copyright (C) 1994-2000
  22. * the Initial Developer. All Rights Reserved.
  23. *
  24. * Contributor(s):
  25. *
  26. * Alternatively, the contents of this file may be used under the terms of
  27. * either the GNU General Public License Version 2 or later (the "GPL"), or
  28. * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
  29. * in which case the provisions of the GPL or the LGPL are applicable instead
  30. * of those above. If you wish to allow use of your version of this file only
  31. * under the terms of either the GPL or the LGPL, and not to allow others to
  32. * use your version of this file under the terms of the MPL, indicate your
  33. * decision by deleting the provisions above and replace them with the notice
  34. * and other provisions required by the GPL or the LGPL. If you do not delete
  35. * the provisions above, a recipient may use your version of this file under
  36. * the terms of any one of the MPL, the GPL or the LGPL.
  37. *
  38. * ***** END LICENSE BLOCK ***** */
  39. /* $Id: ssl.h,v 1.28 2008/03/06 20:16:22 wtc%google.com Exp $ */
  40. #ifndef __ssl_h_
  41. #define __ssl_h_
  42. #include "prtypes.h"
  43. #include "prerror.h"
  44. #include "prio.h"
  45. #include "seccomon.h"
  46. #include "cert.h"
  47. #include "keyt.h"
  48. #include "sslt.h" /* public ssl data types */
  49. #if defined(_WIN32) && !defined(IN_LIBSSL) && !defined(NSS_USE_STATIC_LIBS)
  50. #define SSL_IMPORT extern __declspec(dllimport)
  51. #else
  52. #define SSL_IMPORT extern
  53. #endif
  54. SEC_BEGIN_PROTOS
  55. /* constant table enumerating all implemented SSL 2 and 3 cipher suites. */
  56. SSL_IMPORT const PRUint16 SSL_ImplementedCiphers[];
  57. /* number of entries in the above table. */
  58. SSL_IMPORT const PRUint16 SSL_NumImplementedCiphers;
  59. /* Macro to tell which ciphers in table are SSL2 vs SSL3/TLS. */
  60. #define SSL_IS_SSL2_CIPHER(which) (((which) & 0xfff0) == 0xff00)
  61. /*
  62. ** Imports fd into SSL, returning a new socket. Copies SSL configuration
  63. ** from model.
  64. */
  65. SSL_IMPORT PRFileDesc *SSL_ImportFD(PRFileDesc *model, PRFileDesc *fd);
  66. /*
  67. ** Enable/disable an ssl mode
  68. **
  69. ** SSL_SECURITY:
  70. ** enable/disable use of SSL security protocol before connect
  71. **
  72. ** SSL_SOCKS:
  73. ** enable/disable use of socks before connect
  74. ** (No longer supported).
  75. **
  76. ** SSL_REQUEST_CERTIFICATE:
  77. ** require a certificate during secure connect
  78. */
  79. /* options */
  80. #define SSL_SECURITY 1 /* (on by default) */
  81. #define SSL_SOCKS 2 /* (off by default) */
  82. #define SSL_REQUEST_CERTIFICATE 3 /* (off by default) */
  83. #define SSL_HANDSHAKE_AS_CLIENT 5 /* force accept to hs as client */
  84. /* (off by default) */
  85. #define SSL_HANDSHAKE_AS_SERVER 6 /* force connect to hs as server */
  86. /* (off by default) */
  87. #define SSL_ENABLE_SSL2 7 /* enable ssl v2 (on by default) */
  88. #define SSL_ENABLE_SSL3 8 /* enable ssl v3 (on by default) */
  89. #define SSL_NO_CACHE 9 /* don't use the session cache */
  90. /* (off by default) */
  91. #define SSL_REQUIRE_CERTIFICATE 10 /* (SSL_REQUIRE_FIRST_HANDSHAKE */
  92. /* by default) */
  93. #define SSL_ENABLE_FDX 11 /* permit simultaneous read/write */
  94. /* (off by default) */
  95. #define SSL_V2_COMPATIBLE_HELLO 12 /* send v3 client hello in v2 fmt */
  96. /* (on by default) */
  97. #define SSL_ENABLE_TLS 13 /* enable TLS (on by default) */
  98. #define SSL_ROLLBACK_DETECTION 14 /* for compatibility, default: on */
  99. #define SSL_NO_STEP_DOWN 15 /* Disable export cipher suites */
  100. /* if step-down keys are needed. */
  101. /* default: off, generate */
  102. /* step-down keys if needed. */
  103. #define SSL_BYPASS_PKCS11 16 /* use PKCS#11 for pub key only */
  104. #define SSL_NO_LOCKS 17 /* Don't use locks for protection */
  105. #define SSL_ENABLE_SESSION_TICKETS 18 /* Enable TLS SessionTicket */
  106. /* extension (off by default) */
  107. #ifdef SSL_DEPRECATED_FUNCTION
  108. /* Old deprecated function names */
  109. SSL_IMPORT SECStatus SSL_Enable(PRFileDesc *fd, int option, PRBool on);
  110. SSL_IMPORT SECStatus SSL_EnableDefault(int option, PRBool on);
  111. #endif
  112. /* New function names */
  113. SSL_IMPORT SECStatus SSL_OptionSet(PRFileDesc *fd, PRInt32 option, PRBool on);
  114. SSL_IMPORT SECStatus SSL_OptionGet(PRFileDesc *fd, PRInt32 option, PRBool *on);
  115. SSL_IMPORT SECStatus SSL_OptionSetDefault(PRInt32 option, PRBool on);
  116. SSL_IMPORT SECStatus SSL_OptionGetDefault(PRInt32 option, PRBool *on);
  117. SSL_IMPORT SECStatus SSL_CertDBHandleSet(PRFileDesc *fd, CERTCertDBHandle *dbHandle);
  118. /*
  119. ** Control ciphers that SSL uses. If on is non-zero then the named cipher
  120. ** is enabled, otherwise it is disabled.
  121. ** The "cipher" values are defined in sslproto.h (the SSL_EN_* values).
  122. ** EnableCipher records user preferences.
  123. ** SetPolicy sets the policy according to the policy module.
  124. */
  125. #ifdef SSL_DEPRECATED_FUNCTION
  126. /* Old deprecated function names */
  127. SSL_IMPORT SECStatus SSL_EnableCipher(long which, PRBool enabled);
  128. SSL_IMPORT SECStatus SSL_SetPolicy(long which, int policy);
  129. #endif
  130. /* New function names */
  131. SSL_IMPORT SECStatus SSL_CipherPrefSet(PRFileDesc *fd, PRInt32 cipher, PRBool enabled);
  132. SSL_IMPORT SECStatus SSL_CipherPrefGet(PRFileDesc *fd, PRInt32 cipher, PRBool *enabled);
  133. SSL_IMPORT SECStatus SSL_CipherPrefSetDefault(PRInt32 cipher, PRBool enabled);
  134. SSL_IMPORT SECStatus SSL_CipherPrefGetDefault(PRInt32 cipher, PRBool *enabled);
  135. SSL_IMPORT SECStatus SSL_CipherPolicySet(PRInt32 cipher, PRInt32 policy);
  136. SSL_IMPORT SECStatus SSL_CipherPolicyGet(PRInt32 cipher, PRInt32 *policy);
  137. /* Values for "policy" argument to SSL_PolicySet */
  138. /* Values returned by SSL_CipherPolicyGet. */
  139. #define SSL_NOT_ALLOWED 0 /* or invalid or unimplemented */
  140. #define SSL_ALLOWED 1
  141. #define SSL_RESTRICTED 2 /* only with "Step-Up" certs. */
  142. /* Values for "on" with SSL_REQUIRE_CERTIFICATE. */
  143. #define SSL_REQUIRE_NEVER ((PRBool)0)
  144. #define SSL_REQUIRE_ALWAYS ((PRBool)1)
  145. #define SSL_REQUIRE_FIRST_HANDSHAKE ((PRBool)2)
  146. #define SSL_REQUIRE_NO_ERROR ((PRBool)3)
  147. /*
  148. ** Reset the handshake state for fd. This will make the complete SSL
  149. ** handshake protocol execute from the ground up on the next i/o
  150. ** operation.
  151. */
  152. SSL_IMPORT SECStatus SSL_ResetHandshake(PRFileDesc *fd, PRBool asServer);
  153. /*
  154. ** Force the handshake for fd to complete immediately. This blocks until
  155. ** the complete SSL handshake protocol is finished.
  156. */
  157. SSL_IMPORT SECStatus SSL_ForceHandshake(PRFileDesc *fd);
  158. /*
  159. ** Same as above, but with an I/O timeout.
  160. */
  161. SSL_IMPORT SECStatus SSL_ForceHandshakeWithTimeout(PRFileDesc *fd,
  162. PRIntervalTime timeout);
  163. /*
  164. ** Query security status of socket. *on is set to one if security is
  165. ** enabled. *keySize will contain the stream key size used. *issuer will
  166. ** contain the RFC1485 verison of the name of the issuer of the
  167. ** certificate at the other end of the connection. For a client, this is
  168. ** the issuer of the server's certificate; for a server, this is the
  169. ** issuer of the client's certificate (if any). Subject is the subject of
  170. ** the other end's certificate. The pointers can be zero if the desired
  171. ** data is not needed. All strings returned by this function are owned
  172. ** by the caller, and need to be freed with PORT_Free.
  173. */
  174. SSL_IMPORT SECStatus SSL_SecurityStatus(PRFileDesc *fd, int *on, char **cipher,
  175. int *keySize, int *secretKeySize,
  176. char **issuer, char **subject);
  177. /* Values for "on" */
  178. #define SSL_SECURITY_STATUS_NOOPT -1
  179. #define SSL_SECURITY_STATUS_OFF 0
  180. #define SSL_SECURITY_STATUS_ON_HIGH 1
  181. #define SSL_SECURITY_STATUS_ON_LOW 2
  182. #define SSL_SECURITY_STATUS_FORTEZZA 3 /* NO LONGER SUPPORTED */
  183. /*
  184. ** Return the certificate for our SSL peer. If the client calls this
  185. ** it will always return the server's certificate. If the server calls
  186. ** this, it may return NULL if client authentication is not enabled or
  187. ** if the client had no certificate when asked.
  188. ** "fd" the socket "file" descriptor
  189. */
  190. SSL_IMPORT CERTCertificate *SSL_PeerCertificate(PRFileDesc *fd);
  191. /*
  192. ** Authenticate certificate hook. Called when a certificate comes in
  193. ** (because of SSL_REQUIRE_CERTIFICATE in SSL_Enable) to authenticate the
  194. ** certificate.
  195. */
  196. typedef SECStatus (PR_CALLBACK *SSLAuthCertificate)(void *arg, PRFileDesc *fd,
  197. PRBool checkSig,
  198. PRBool isServer);
  199. SSL_IMPORT SECStatus SSL_AuthCertificateHook(PRFileDesc *fd,
  200. SSLAuthCertificate f,
  201. void *arg);
  202. /* An implementation of the certificate authentication hook */
  203. SSL_IMPORT SECStatus SSL_AuthCertificate(void *arg, PRFileDesc *fd,
  204. PRBool checkSig, PRBool isServer);
  205. /*
  206. * Prototype for SSL callback to get client auth data from the application.
  207. * arg - application passed argument
  208. * caNames - pointer to distinguished names of CAs that the server likes
  209. * pRetCert - pointer to pointer to cert, for return of cert
  210. * pRetKey - pointer to key pointer, for return of key
  211. */
  212. typedef SECStatus (PR_CALLBACK *SSLGetClientAuthData)(void *arg,
  213. PRFileDesc *fd,
  214. CERTDistNames *caNames,
  215. CERTCertificate **pRetCert,/*return */
  216. SECKEYPrivateKey **pRetKey);/* return */
  217. /*
  218. * Set the client side callback for SSL to retrieve user's private key
  219. * and certificate.
  220. * fd - the file descriptor for the connection in question
  221. * f - the application's callback that delivers the key and cert
  222. * a - application specific data
  223. */
  224. SSL_IMPORT SECStatus SSL_GetClientAuthDataHook(PRFileDesc *fd,
  225. SSLGetClientAuthData f, void *a);
  226. /*
  227. * Set the client side argument for SSL to retrieve PKCS #11 pin.
  228. * fd - the file descriptor for the connection in question
  229. * a - pkcs11 application specific data
  230. */
  231. SSL_IMPORT SECStatus SSL_SetPKCS11PinArg(PRFileDesc *fd, void *a);
  232. /*
  233. ** This is a callback for dealing with server certs that are not authenticated
  234. ** by the client. The client app can decide that it actually likes the
  235. ** cert by some external means and restart the connection.
  236. */
  237. typedef SECStatus (PR_CALLBACK *SSLBadCertHandler)(void *arg, PRFileDesc *fd);
  238. SSL_IMPORT SECStatus SSL_BadCertHook(PRFileDesc *fd, SSLBadCertHandler f,
  239. void *arg);
  240. /*
  241. ** Configure ssl for running a secure server. Needs the
  242. ** certificate for the server and the servers private key. The arguments
  243. ** are copied.
  244. */
  245. SSL_IMPORT SECStatus SSL_ConfigSecureServer(
  246. PRFileDesc *fd, CERTCertificate *cert,
  247. SECKEYPrivateKey *key, SSLKEAType kea);
  248. /*
  249. ** Configure a secure servers session-id cache. Define the maximum number
  250. ** of entries in the cache, the longevity of the entires, and the directory
  251. ** where the cache files will be placed. These values can be zero, and
  252. ** if so, the implementation will choose defaults.
  253. ** This version of the function is for use in applications that have only one
  254. ** process that uses the cache (even if that process has multiple threads).
  255. */
  256. SSL_IMPORT SECStatus SSL_ConfigServerSessionIDCache(int maxCacheEntries,
  257. PRUint32 timeout,
  258. PRUint32 ssl3_timeout,
  259. const char * directory);
  260. /*
  261. ** Like SSL_ConfigServerSessionIDCache, with one important difference.
  262. ** If the application will run multiple processes (as opposed to, or in
  263. ** addition to multiple threads), then it must call this function, instead
  264. ** of calling SSL_ConfigServerSessionIDCache().
  265. ** This has nothing to do with the number of processORs, only processEs.
  266. ** This function sets up a Server Session ID (SID) cache that is safe for
  267. ** access by multiple processes on the same system.
  268. */
  269. SSL_IMPORT SECStatus SSL_ConfigMPServerSIDCache(int maxCacheEntries,
  270. PRUint32 timeout,
  271. PRUint32 ssl3_timeout,
  272. const char * directory);
  273. /* Get and set the configured maximum number of mutexes used for the
  274. ** server's store of SSL sessions. This value is used by the server
  275. ** session ID cache initialization functions shown above. Note that on
  276. ** some platforms, these mutexes are actually implemented with POSIX
  277. ** semaphores, or with unnamed pipes. The default value varies by platform.
  278. ** An attempt to set a too-low maximum will return an error and the
  279. ** configured value will not be changed.
  280. */
  281. SSL_IMPORT PRUint32 SSL_GetMaxServerCacheLocks(void);
  282. SSL_IMPORT SECStatus SSL_SetMaxServerCacheLocks(PRUint32 maxLocks);
  283. /* environment variable set by SSL_ConfigMPServerSIDCache, and queried by
  284. * SSL_InheritMPServerSIDCache when envString is NULL.
  285. */
  286. #define SSL_ENV_VAR_NAME "SSL_INHERITANCE"
  287. /* called in child to inherit SID Cache variables.
  288. * If envString is NULL, this function will use the value of the environment
  289. * variable "SSL_INHERITANCE", otherwise the string value passed in will be
  290. * used.
  291. */
  292. SSL_IMPORT SECStatus SSL_InheritMPServerSIDCache(const char * envString);
  293. /*
  294. ** Set the callback on a particular socket that gets called when we finish
  295. ** performing a handshake.
  296. */
  297. typedef void (PR_CALLBACK *SSLHandshakeCallback)(PRFileDesc *fd,
  298. void *client_data);
  299. SSL_IMPORT SECStatus SSL_HandshakeCallback(PRFileDesc *fd,
  300. SSLHandshakeCallback cb, void *client_data);
  301. /*
  302. ** For the server, request a new handshake. For the client, begin a new
  303. ** handshake. If flushCache is non-zero, the SSL3 cache entry will be
  304. ** flushed first, ensuring that a full SSL handshake will be done.
  305. ** If flushCache is zero, and an SSL connection is established, it will
  306. ** do the much faster session restart handshake. This will change the
  307. ** session keys without doing another private key operation.
  308. */
  309. SSL_IMPORT SECStatus SSL_ReHandshake(PRFileDesc *fd, PRBool flushCache);
  310. /*
  311. ** Same as above, but with an I/O timeout.
  312. */
  313. SSL_IMPORT SECStatus SSL_ReHandshakeWithTimeout(PRFileDesc *fd,
  314. PRBool flushCache,
  315. PRIntervalTime timeout);
  316. #ifdef SSL_DEPRECATED_FUNCTION
  317. /* deprecated!
  318. ** For the server, request a new handshake. For the client, begin a new
  319. ** handshake. Flushes SSL3 session cache entry first, ensuring that a
  320. ** full handshake will be done.
  321. ** This call is equivalent to SSL_ReHandshake(fd, PR_TRUE)
  322. */
  323. SSL_IMPORT SECStatus SSL_RedoHandshake(PRFileDesc *fd);
  324. #endif
  325. /*
  326. * Allow the application to pass a URL or hostname into the SSL library
  327. */
  328. SSL_IMPORT SECStatus SSL_SetURL(PRFileDesc *fd, const char *url);
  329. /*
  330. ** Return the number of bytes that SSL has waiting in internal buffers.
  331. ** Return 0 if security is not enabled.
  332. */
  333. SSL_IMPORT int SSL_DataPending(PRFileDesc *fd);
  334. /*
  335. ** Invalidate the SSL session associated with fd.
  336. */
  337. SSL_IMPORT SECStatus SSL_InvalidateSession(PRFileDesc *fd);
  338. /*
  339. ** Return a SECItem containing the SSL session ID associated with the fd.
  340. */
  341. SSL_IMPORT SECItem *SSL_GetSessionID(PRFileDesc *fd);
  342. /*
  343. ** Clear out the client's SSL session cache, not the server's session cache.
  344. */
  345. SSL_IMPORT void SSL_ClearSessionCache(void);
  346. /*
  347. ** Close the server's SSL session cache.
  348. */
  349. SSL_IMPORT SECStatus SSL_ShutdownServerSessionIDCache(void);
  350. /*
  351. ** Set peer information so we can correctly look up SSL session later.
  352. ** You only have to do this if you're tunneling through a proxy.
  353. */
  354. SSL_IMPORT SECStatus SSL_SetSockPeerID(PRFileDesc *fd, char *peerID);
  355. /*
  356. ** Reveal the security information for the peer.
  357. */
  358. SSL_IMPORT CERTCertificate * SSL_RevealCert(PRFileDesc * socket);
  359. SSL_IMPORT void * SSL_RevealPinArg(PRFileDesc * socket);
  360. SSL_IMPORT char * SSL_RevealURL(PRFileDesc * socket);
  361. /* This callback may be passed to the SSL library via a call to
  362. * SSL_GetClientAuthDataHook() for each SSL client socket.
  363. * It will be invoked when SSL needs to know what certificate and private key
  364. * (if any) to use to respond to a request for client authentication.
  365. * If arg is non-NULL, it is a pointer to a NULL-terminated string containing
  366. * the nickname of the cert/key pair to use.
  367. * If arg is NULL, this function will search the cert and key databases for
  368. * a suitable match and send it if one is found.
  369. */
  370. SSL_IMPORT SECStatus
  371. NSS_GetClientAuthData(void * arg,
  372. PRFileDesc * socket,
  373. struct CERTDistNamesStr * caNames,
  374. struct CERTCertificateStr ** pRetCert,
  375. struct SECKEYPrivateKeyStr **pRetKey);
  376. /*
  377. * Look to see if any of the signers in the cert chain for "cert" are found
  378. * in the list of caNames.
  379. * Returns SECSuccess if so, SECFailure if not.
  380. * Used by NSS_GetClientAuthData. May be used by other callback functions.
  381. */
  382. SSL_IMPORT SECStatus NSS_CmpCertChainWCANames(CERTCertificate *cert,
  383. CERTDistNames *caNames);
  384. /*
  385. * Returns key exchange type of the keys in an SSL server certificate.
  386. */
  387. SSL_IMPORT SSLKEAType NSS_FindCertKEAType(CERTCertificate * cert);
  388. /* Set cipher policies to a predefined Domestic (U.S.A.) policy.
  389. * This essentially enables all supported ciphers.
  390. */
  391. SSL_IMPORT SECStatus NSS_SetDomesticPolicy(void);
  392. /* Set cipher policies to a predefined Policy that is exportable from the USA
  393. * according to present U.S. policies as we understand them.
  394. * See documentation for the list.
  395. * Note that your particular application program may be able to obtain
  396. * an export license with more or fewer capabilities than those allowed
  397. * by this function. In that case, you should use SSL_SetPolicy()
  398. * to explicitly allow those ciphers you may legally export.
  399. */
  400. SSL_IMPORT SECStatus NSS_SetExportPolicy(void);
  401. /* Set cipher policies to a predefined Policy that is exportable from the USA
  402. * according to present U.S. policies as we understand them, and that the
  403. * nation of France will permit to be imported into their country.
  404. * See documentation for the list.
  405. */
  406. SSL_IMPORT SECStatus NSS_SetFrancePolicy(void);
  407. SSL_IMPORT SSL3Statistics * SSL_GetStatistics(void);
  408. /* Report more information than SSL_SecurityStatus.
  409. ** Caller supplies the info struct. Function fills it in.
  410. */
  411. SSL_IMPORT SECStatus SSL_GetChannelInfo(PRFileDesc *fd, SSLChannelInfo *info,
  412. PRUintn len);
  413. SSL_IMPORT SECStatus SSL_GetCipherSuiteInfo(PRUint16 cipherSuite,
  414. SSLCipherSuiteInfo *info, PRUintn len);
  415. /*
  416. ** Return a new reference to the certificate that was most recently sent
  417. ** to the peer on this SSL/TLS connection, or NULL if none has been sent.
  418. */
  419. SSL_IMPORT CERTCertificate * SSL_LocalCertificate(PRFileDesc *fd);
  420. /* Test an SSL configuration to see if SSL_BYPASS_PKCS11 can be turned on.
  421. ** Check the key exchange algorithm for each cipher in the list to see if
  422. ** a master secret key can be extracted after being derived with the mechanism
  423. ** required by the protocolmask argument. If the KEA will use keys from the
  424. ** specified cert make sure the extract operation is attempted from the slot
  425. ** where the private key resides.
  426. ** If MS can be extracted for all ciphers, (*pcanbypass) is set to TRUE and
  427. ** SECSuccess is returned. In all other cases but one (*pcanbypass) is
  428. ** set to FALSE and SECFailure is returned.
  429. ** In that last case Derive() has been called successfully but the MS is null,
  430. ** CanBypass sets (*pcanbypass) to FALSE and returns SECSuccess indicating the
  431. ** arguments were all valid but the slot cannot be bypassed.
  432. **
  433. ** Note: A TRUE return code from CanBypass means "Your configuration will perform
  434. ** NO WORSE with the bypass enabled than without"; it does NOT mean that every
  435. ** cipher suite listed will work properly with the selected protocols.
  436. **
  437. ** Caveat: If export cipher suites are included in the argument list Canbypass
  438. ** will return FALSE.
  439. **/
  440. /* protocol mask bits */
  441. #define SSL_CBP_SSL3 0x0001 /* test SSL v3 mechanisms */
  442. #define SSL_CBP_TLS1_0 0x0002 /* test TLS v1.0 mechanisms */
  443. SSL_IMPORT SECStatus SSL_CanBypass(CERTCertificate *cert,
  444. SECKEYPrivateKey *privKey,
  445. PRUint32 protocolmask,
  446. PRUint16 *ciphers, int nciphers,
  447. PRBool *pcanbypass, void *pwArg);
  448. SEC_END_PROTOS
  449. #endif /* __ssl_h_ */