Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.
 
 
 
 
 
 

2890 rindas
126 KiB

  1. /* ssl/ssl.h */
  2. /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
  3. * All rights reserved.
  4. *
  5. * This package is an SSL implementation written
  6. * by Eric Young (eay@cryptsoft.com).
  7. * The implementation was written so as to conform with Netscapes SSL.
  8. *
  9. * This library is free for commercial and non-commercial use as long as
  10. * the following conditions are aheared to. The following conditions
  11. * apply to all code found in this distribution, be it the RC4, RSA,
  12. * lhash, DES, etc., code; not just the SSL code. The SSL documentation
  13. * included with this distribution is covered by the same copyright terms
  14. * except that the holder is Tim Hudson (tjh@cryptsoft.com).
  15. *
  16. * Copyright remains Eric Young's, and as such any Copyright notices in
  17. * the code are not to be removed.
  18. * If this package is used in a product, Eric Young should be given attribution
  19. * as the author of the parts of the library used.
  20. * This can be in the form of a textual message at program startup or
  21. * in documentation (online or textual) provided with the package.
  22. *
  23. * Redistribution and use in source and binary forms, with or without
  24. * modification, are permitted provided that the following conditions
  25. * are met:
  26. * 1. Redistributions of source code must retain the copyright
  27. * notice, this list of conditions and the following disclaimer.
  28. * 2. Redistributions in binary form must reproduce the above copyright
  29. * notice, this list of conditions and the following disclaimer in the
  30. * documentation and/or other materials provided with the distribution.
  31. * 3. All advertising materials mentioning features or use of this software
  32. * must display the following acknowledgement:
  33. * "This product includes cryptographic software written by
  34. * Eric Young (eay@cryptsoft.com)"
  35. * The word 'cryptographic' can be left out if the rouines from the library
  36. * being used are not cryptographic related :-).
  37. * 4. If you include any Windows specific code (or a derivative thereof) from
  38. * the apps directory (application code) you must include an acknowledgement:
  39. * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
  40. *
  41. * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
  42. * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  43. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  44. * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
  45. * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  46. * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  47. * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  48. * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  49. * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  50. * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  51. * SUCH DAMAGE.
  52. *
  53. * The licence and distribution terms for any publically available version or
  54. * derivative of this code cannot be changed. i.e. this code cannot simply be
  55. * copied and put under another distribution licence
  56. * [including the GNU Public Licence.]
  57. */
  58. /* ====================================================================
  59. * Copyright (c) 1998-2007 The OpenSSL Project. All rights reserved.
  60. *
  61. * Redistribution and use in source and binary forms, with or without
  62. * modification, are permitted provided that the following conditions
  63. * are met:
  64. *
  65. * 1. Redistributions of source code must retain the above copyright
  66. * notice, this list of conditions and the following disclaimer.
  67. *
  68. * 2. Redistributions in binary form must reproduce the above copyright
  69. * notice, this list of conditions and the following disclaimer in
  70. * the documentation and/or other materials provided with the
  71. * distribution.
  72. *
  73. * 3. All advertising materials mentioning features or use of this
  74. * software must display the following acknowledgment:
  75. * "This product includes software developed by the OpenSSL Project
  76. * for use in the OpenSSL Toolkit. (http://www.openssl.org/)"
  77. *
  78. * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
  79. * endorse or promote products derived from this software without
  80. * prior written permission. For written permission, please contact
  81. * openssl-core@openssl.org.
  82. *
  83. * 5. Products derived from this software may not be called "OpenSSL"
  84. * nor may "OpenSSL" appear in their names without prior written
  85. * permission of the OpenSSL Project.
  86. *
  87. * 6. Redistributions of any form whatsoever must retain the following
  88. * acknowledgment:
  89. * "This product includes software developed by the OpenSSL Project
  90. * for use in the OpenSSL Toolkit (http://www.openssl.org/)"
  91. *
  92. * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
  93. * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  94. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
  95. * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR
  96. * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  97. * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
  98. * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
  99. * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  100. * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
  101. * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  102. * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
  103. * OF THE POSSIBILITY OF SUCH DAMAGE.
  104. * ====================================================================
  105. *
  106. * This product includes cryptographic software written by Eric Young
  107. * (eay@cryptsoft.com). This product includes software written by Tim
  108. * Hudson (tjh@cryptsoft.com).
  109. *
  110. */
  111. /* ====================================================================
  112. * Copyright 2002 Sun Microsystems, Inc. ALL RIGHTS RESERVED.
  113. * ECC cipher suite support in OpenSSL originally developed by
  114. * SUN MICROSYSTEMS, INC., and contributed to the OpenSSL project.
  115. */
  116. /* ====================================================================
  117. * Copyright 2005 Nokia. All rights reserved.
  118. *
  119. * The portions of the attached software ("Contribution") is developed by
  120. * Nokia Corporation and is licensed pursuant to the OpenSSL open source
  121. * license.
  122. *
  123. * The Contribution, originally written by Mika Kousa and Pasi Eronen of
  124. * Nokia Corporation, consists of the "PSK" (Pre-Shared Key) ciphersuites
  125. * support (see RFC 4279) to OpenSSL.
  126. *
  127. * No patent licenses or other rights except those expressly stated in
  128. * the OpenSSL open source license shall be deemed granted or received
  129. * expressly, by implication, estoppel, or otherwise.
  130. *
  131. * No assurances are provided by Nokia that the Contribution does not
  132. * infringe the patent or other intellectual property rights of any third
  133. * party or that the license provides you with all the necessary rights
  134. * to make use of the Contribution.
  135. *
  136. * THE SOFTWARE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND. IN
  137. * ADDITION TO THE DISCLAIMERS INCLUDED IN THE LICENSE, NOKIA
  138. * SPECIFICALLY DISCLAIMS ANY LIABILITY FOR CLAIMS BROUGHT BY YOU OR ANY
  139. * OTHER ENTITY BASED ON INFRINGEMENT OF INTELLECTUAL PROPERTY RIGHTS OR
  140. * OTHERWISE.
  141. */
  142. #ifndef OPENSSL_HEADER_SSL_H
  143. #define OPENSSL_HEADER_SSL_H
  144. #include <openssl/base.h>
  145. #include <openssl/bio.h>
  146. #include <openssl/buf.h>
  147. #include <openssl/hmac.h>
  148. #include <openssl/lhash.h>
  149. #include <openssl/pem.h>
  150. #include <openssl/thread.h>
  151. #include <openssl/x509.h>
  152. #if !defined(OPENSSL_WINDOWS)
  153. #include <sys/time.h>
  154. #endif
  155. /* wpa_supplicant expects to get the version functions from ssl.h */
  156. #include <openssl/crypto.h>
  157. /* Forward-declare struct timeval. On Windows, it is defined in winsock2.h and
  158. * Windows headers define too many macros to be included in public headers.
  159. * However, only a forward declaration is needed. */
  160. struct timeval;
  161. #if defined(__cplusplus)
  162. extern "C" {
  163. #endif
  164. /* SSL implementation. */
  165. /* Initialization. */
  166. /* SSL_library_init initializes the crypto and SSL libraries and returns one. */
  167. OPENSSL_EXPORT int SSL_library_init(void);
  168. /* Protocol version constants */
  169. #define SSL3_VERSION 0x0300
  170. #define SSL3_VERSION_MAJOR 0x03
  171. #define SSL3_VERSION_MINOR 0x00
  172. #define TLS1_2_VERSION 0x0303
  173. #define TLS1_2_VERSION_MAJOR 0x03
  174. #define TLS1_2_VERSION_MINOR 0x03
  175. #define TLS1_1_VERSION 0x0302
  176. #define TLS1_1_VERSION_MAJOR 0x03
  177. #define TLS1_1_VERSION_MINOR 0x02
  178. #define TLS1_VERSION 0x0301
  179. #define TLS1_VERSION_MAJOR 0x03
  180. #define TLS1_VERSION_MINOR 0x01
  181. #define DTLS1_VERSION 0xFEFF
  182. #define DTLS1_2_VERSION 0xFEFD
  183. /* Cipher suites. */
  184. /* An SSL_CIPHER represents a cipher suite. */
  185. typedef struct ssl_cipher_st {
  186. /* name is the OpenSSL name for the cipher. */
  187. const char *name;
  188. /* id is the cipher suite value bitwise OR-d with 0x03000000. */
  189. uint32_t id;
  190. /* The following are internal fields. See ssl/internal.h for their values. */
  191. uint32_t algorithm_mkey;
  192. uint32_t algorithm_auth;
  193. uint32_t algorithm_enc;
  194. uint32_t algorithm_mac;
  195. uint32_t algorithm_ssl;
  196. uint32_t algo_strength;
  197. /* algorithm2 contains extra flags. See ssl/internal.h. */
  198. uint32_t algorithm2;
  199. /* strength_bits is the strength of the cipher in bits. */
  200. int strength_bits;
  201. /* alg_bits is the number of bits of key material used by the algorithm. */
  202. int alg_bits;
  203. } SSL_CIPHER;
  204. DECLARE_STACK_OF(SSL_CIPHER)
  205. /* SSL_get_cipher_by_value returns the structure representing a TLS cipher
  206. * suite based on its assigned number, or NULL if unknown. See
  207. * https://www.iana.org/assignments/tls-parameters/tls-parameters.xhtml#tls-parameters-4. */
  208. OPENSSL_EXPORT const SSL_CIPHER *SSL_get_cipher_by_value(uint16_t value);
  209. /* SSL_CIPHER_get_id returns |cipher|'s id. It may be cast to a |uint16_t| to
  210. * get the cipher suite value. */
  211. OPENSSL_EXPORT uint32_t SSL_CIPHER_get_id(const SSL_CIPHER *cipher);
  212. /* SSL_CIPHER_is_AES returns one if |cipher| uses AES (either GCM or CBC
  213. * mode). */
  214. OPENSSL_EXPORT int SSL_CIPHER_is_AES(const SSL_CIPHER *cipher);
  215. /* SSL_CIPHER_has_MD5_HMAC returns one if |cipher| uses HMAC-MD5. */
  216. OPENSSL_EXPORT int SSL_CIPHER_has_MD5_HMAC(const SSL_CIPHER *cipher);
  217. /* SSL_CIPHER_is_AESGCM returns one if |cipher| uses AES-GCM. */
  218. OPENSSL_EXPORT int SSL_CIPHER_is_AESGCM(const SSL_CIPHER *cipher);
  219. /* SSL_CIPHER_is_CHACHA20POLY1305 returns one if |cipher| uses
  220. * CHACHA20_POLY1305. */
  221. OPENSSL_EXPORT int SSL_CIPHER_is_CHACHA20POLY1305(const SSL_CIPHER *cipher);
  222. /* SSL_CIPHER_get_name returns the OpenSSL name of |cipher|. */
  223. OPENSSL_EXPORT const char *SSL_CIPHER_get_name(const SSL_CIPHER *cipher);
  224. /* SSL_CIPHER_get_kx_name returns a string that describes the key-exchange
  225. * method used by |cipher|. For example, "ECDHE_ECDSA". */
  226. OPENSSL_EXPORT const char *SSL_CIPHER_get_kx_name(const SSL_CIPHER *cipher);
  227. /* SSL_CIPHER_get_rfc_name returns a newly-allocated string with the standard
  228. * name for |cipher|. For example, "TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256". The
  229. * caller is responsible for calling |OPENSSL_free| on the result. */
  230. OPENSSL_EXPORT char *SSL_CIPHER_get_rfc_name(const SSL_CIPHER *cipher);
  231. /* SSL_CIPHER_get_bits returns the strength, in bits, of |cipher|. If
  232. * |out_alg_bits| is not NULL, it writes the number of bits consumed by the
  233. * symmetric algorithm to |*out_alg_bits|. */
  234. OPENSSL_EXPORT int SSL_CIPHER_get_bits(const SSL_CIPHER *cipher,
  235. int *out_alg_bits);
  236. /* Underdocumented functions.
  237. *
  238. * Functions below here haven't been touched up and may be underdocumented. */
  239. /* SSLeay version number for ASN.1 encoding of the session information */
  240. /* Version 0 - initial version
  241. * Version 1 - added the optional peer certificate. */
  242. #define SSL_SESSION_ASN1_VERSION 0x0001
  243. #define SSL_MAX_SSL_SESSION_ID_LENGTH 32
  244. #define SSL_MAX_SID_CTX_LENGTH 32
  245. #define SSL_MAX_MASTER_KEY_LENGTH 48
  246. /* These are used to specify which ciphers to use and not to use */
  247. #define SSL_TXT_MEDIUM "MEDIUM"
  248. #define SSL_TXT_HIGH "HIGH"
  249. #define SSL_TXT_FIPS "FIPS"
  250. #define SSL_TXT_kRSA "kRSA"
  251. #define SSL_TXT_kDHE "kDHE"
  252. #define SSL_TXT_kEDH "kEDH" /* same as "kDHE" */
  253. #define SSL_TXT_kECDHE "kECDHE"
  254. #define SSL_TXT_kEECDH "kEECDH" /* same as "kECDHE" */
  255. #define SSL_TXT_kPSK "kPSK"
  256. #define SSL_TXT_aRSA "aRSA"
  257. #define SSL_TXT_aECDSA "aECDSA"
  258. #define SSL_TXT_aPSK "aPSK"
  259. #define SSL_TXT_DH "DH"
  260. #define SSL_TXT_DHE "DHE" /* same as "kDHE" */
  261. #define SSL_TXT_EDH "EDH" /* same as "DHE" */
  262. #define SSL_TXT_RSA "RSA"
  263. #define SSL_TXT_ECDH "ECDH"
  264. #define SSL_TXT_ECDHE "ECDHE" /* same as "kECDHE" */
  265. #define SSL_TXT_EECDH "EECDH" /* same as "ECDHE" */
  266. #define SSL_TXT_ECDSA "ECDSA"
  267. #define SSL_TXT_PSK "PSK"
  268. #define SSL_TXT_3DES "3DES"
  269. #define SSL_TXT_RC4 "RC4"
  270. #define SSL_TXT_AES128 "AES128"
  271. #define SSL_TXT_AES256 "AES256"
  272. #define SSL_TXT_AES "AES"
  273. #define SSL_TXT_AES_GCM "AESGCM"
  274. #define SSL_TXT_CHACHA20 "CHACHA20"
  275. #define SSL_TXT_MD5 "MD5"
  276. #define SSL_TXT_SHA1 "SHA1"
  277. #define SSL_TXT_SHA "SHA" /* same as "SHA1" */
  278. #define SSL_TXT_SHA256 "SHA256"
  279. #define SSL_TXT_SHA384 "SHA384"
  280. #define SSL_TXT_SSLV3 "SSLv3"
  281. #define SSL_TXT_TLSV1 "TLSv1"
  282. #define SSL_TXT_TLSV1_1 "TLSv1.1"
  283. #define SSL_TXT_TLSV1_2 "TLSv1.2"
  284. #define SSL_TXT_ALL "ALL"
  285. /* COMPLEMENTOF* definitions. These identifiers are used to (de-select) ciphers
  286. * normally not being used.
  287. *
  288. * Example: "RC4" will activate all ciphers using RC4 including ciphers without
  289. * authentication, which would normally disabled by DEFAULT (due the "!ADH"
  290. * being part of default). Therefore "RC4:!COMPLEMENTOFDEFAULT" will make sure
  291. * that it is also disabled in the specific selection. COMPLEMENTOF*
  292. * identifiers are portable between version, as adjustments to the default
  293. * cipher setup will also be included here.
  294. *
  295. * COMPLEMENTOFDEFAULT does not experience the same special treatment that
  296. * DEFAULT gets, as only selection is being done and no sorting as needed for
  297. * DEFAULT. */
  298. #define SSL_TXT_CMPDEF "COMPLEMENTOFDEFAULT"
  299. /* The following cipher list is used by default. It also is substituted when an
  300. * application-defined cipher list string starts with 'DEFAULT'. */
  301. #define SSL_DEFAULT_CIPHER_LIST "ALL"
  302. /* As of OpenSSL 1.0.0, ssl_create_cipher_list() in ssl/ssl_ciph.c always
  303. * starts with a reasonable order, and all we have to do for DEFAULT is
  304. * throwing out anonymous and unencrypted ciphersuites! (The latter are not
  305. * actually enabled by ALL, but "ALL:RSA" would enable some of them.) */
  306. /* Used in SSL_set_shutdown()/SSL_get_shutdown(); */
  307. #define SSL_SENT_SHUTDOWN 1
  308. #define SSL_RECEIVED_SHUTDOWN 2
  309. #define SSL_FILETYPE_ASN1 X509_FILETYPE_ASN1
  310. #define SSL_FILETYPE_PEM X509_FILETYPE_PEM
  311. typedef struct ssl_method_st SSL_METHOD;
  312. typedef struct ssl_protocol_method_st SSL_PROTOCOL_METHOD;
  313. typedef struct ssl_session_st SSL_SESSION;
  314. typedef struct tls_sigalgs_st TLS_SIGALGS;
  315. typedef struct ssl_conf_ctx_st SSL_CONF_CTX;
  316. typedef struct ssl3_enc_method SSL3_ENC_METHOD;
  317. /* SRTP protection profiles for use with the use_srtp extension (RFC 5764). */
  318. typedef struct srtp_protection_profile_st {
  319. const char *name;
  320. unsigned long id;
  321. } SRTP_PROTECTION_PROFILE;
  322. DECLARE_STACK_OF(SRTP_PROTECTION_PROFILE)
  323. /* An SSL_SESSION represents an SSL session that may be resumed in an
  324. * abbreviated handshake. */
  325. struct ssl_session_st {
  326. int ssl_version; /* what ssl version session info is being kept in here? */
  327. int master_key_length;
  328. uint8_t master_key[SSL_MAX_MASTER_KEY_LENGTH];
  329. /* session_id - valid? */
  330. unsigned int session_id_length;
  331. uint8_t session_id[SSL_MAX_SSL_SESSION_ID_LENGTH];
  332. /* this is used to determine whether the session is being reused in
  333. * the appropriate context. It is up to the application to set this,
  334. * via SSL_new */
  335. unsigned int sid_ctx_length;
  336. uint8_t sid_ctx[SSL_MAX_SID_CTX_LENGTH];
  337. char *psk_identity;
  338. /* Used to indicate that session resumption is not allowed. Applications can
  339. * also set this bit for a new session via not_resumable_session_cb to
  340. * disable session caching and tickets. */
  341. int not_resumable;
  342. /* The cert is the certificate used to establish this connection */
  343. struct sess_cert_st /* SESS_CERT */ *sess_cert;
  344. /* This is the cert for the other end. On clients, it will be the same as
  345. * sess_cert->peer_key->x509 (the latter is not enough as sess_cert is not
  346. * retained in the external representation of sessions, see ssl_asn1.c). */
  347. X509 *peer;
  348. /* when app_verify_callback accepts a session where the peer's certificate is
  349. * not ok, we must remember the error for session reuse: */
  350. long verify_result; /* only for servers */
  351. CRYPTO_refcount_t references;
  352. long timeout;
  353. long time;
  354. const SSL_CIPHER *cipher;
  355. CRYPTO_EX_DATA ex_data; /* application specific data */
  356. /* These are used to make removal of session-ids more efficient and to
  357. * implement a maximum cache size. */
  358. struct ssl_session_st *prev, *next;
  359. char *tlsext_hostname;
  360. /* RFC4507 info */
  361. uint8_t *tlsext_tick; /* Session ticket */
  362. size_t tlsext_ticklen; /* Session ticket length */
  363. uint32_t tlsext_tick_lifetime_hint; /* Session lifetime hint in seconds */
  364. size_t tlsext_signed_cert_timestamp_list_length;
  365. uint8_t *tlsext_signed_cert_timestamp_list; /* Server's list. */
  366. /* The OCSP response that came with the session. */
  367. size_t ocsp_response_length;
  368. uint8_t *ocsp_response;
  369. char peer_sha256_valid; /* Non-zero if peer_sha256 is valid */
  370. uint8_t
  371. peer_sha256[SHA256_DIGEST_LENGTH]; /* SHA256 of peer certificate */
  372. /* original_handshake_hash contains the handshake hash (either SHA-1+MD5 or
  373. * SHA-2, depending on TLS version) for the original, full handshake that
  374. * created a session. This is used by Channel IDs during resumption. */
  375. uint8_t original_handshake_hash[EVP_MAX_MD_SIZE];
  376. unsigned int original_handshake_hash_len;
  377. /* extended_master_secret is true if the master secret in this session was
  378. * generated using EMS and thus isn't vulnerable to the Triple Handshake
  379. * attack. */
  380. char extended_master_secret;
  381. };
  382. /* SSL_OP_LEGACY_SERVER_CONNECT allows initial connection to servers that don't
  383. * support RI */
  384. #define SSL_OP_LEGACY_SERVER_CONNECT 0x00000004L
  385. /* SSL_OP_MICROSOFT_BIG_SSLV3_BUFFER allows for record sizes SSL3_RT_MAX_EXTRA
  386. * bytes above the maximum record size. */
  387. #define SSL_OP_MICROSOFT_BIG_SSLV3_BUFFER 0x00000020L
  388. /* SSL_OP_TLS_D5_BUG accepts an RSAClientKeyExchange in TLS encoded as SSL3,
  389. * without a length prefix. */
  390. #define SSL_OP_TLS_D5_BUG 0x00000100L
  391. /* SSL_OP_ALL enables the above bug workarounds that should be rather harmless.
  392. * */
  393. #define SSL_OP_ALL 0x00000BFFL
  394. /* DTLS options */
  395. #define SSL_OP_NO_QUERY_MTU 0x00001000L
  396. /* Don't use RFC4507 ticket extension */
  397. #define SSL_OP_NO_TICKET 0x00004000L
  398. /* Permit unsafe legacy renegotiation */
  399. #define SSL_OP_ALLOW_UNSAFE_LEGACY_RENEGOTIATION 0x00040000L
  400. /* Set on servers to choose the cipher according to the server's preferences */
  401. #define SSL_OP_CIPHER_SERVER_PREFERENCE 0x00400000L
  402. /* Deprecated: Use SSL_CTX_set_min_version and SSL_CTX_set_max_version
  403. * instead. */
  404. #define SSL_OP_NO_SSLv3 0x02000000L
  405. #define SSL_OP_NO_TLSv1 0x04000000L
  406. #define SSL_OP_NO_TLSv1_2 0x08000000L
  407. #define SSL_OP_NO_TLSv1_1 0x10000000L
  408. #define SSL_OP_NO_DTLSv1 SSL_OP_NO_TLSv1
  409. #define SSL_OP_NO_DTLSv1_2 SSL_OP_NO_TLSv1_2
  410. #define SSL_OP_NO_SSL_MASK \
  411. (SSL_OP_NO_SSLv2 | SSL_OP_NO_SSLv3 | SSL_OP_NO_TLSv1 | SSL_OP_NO_TLSv1_1 | \
  412. SSL_OP_NO_TLSv1_2)
  413. /* The following flags do nothing and are included only to make it easier to
  414. * compile code with BoringSSL. */
  415. #define SSL_OP_DONT_INSERT_EMPTY_FRAGMENTS 0
  416. #define SSL_OP_MICROSOFT_SESS_ID_BUG 0
  417. #define SSL_OP_NETSCAPE_CHALLENGE_BUG 0
  418. #define SSL_OP_NO_COMPRESSION 0
  419. #define SSL_OP_NO_SESSION_RESUMPTION_ON_RENEGOTIATION 0
  420. #define SSL_OP_NO_SSLv2 0
  421. #define SSL_OP_SINGLE_DH_USE 0
  422. #define SSL_OP_SINGLE_ECDH_USE 0
  423. #define SSL_OP_SSLREF2_REUSE_CERT_TYPE_BUG 0
  424. #define SSL_OP_TLS_BLOCK_PADDING_BUG 0
  425. #define SSL_OP_TLS_ROLLBACK_BUG 0
  426. /* Allow SSL_write(..., n) to return r with 0 < r < n (i.e. report success when
  427. * just a single record has been written): */
  428. #define SSL_MODE_ENABLE_PARTIAL_WRITE 0x00000001L
  429. /* Make it possible to retry SSL_write() with changed buffer location (buffer
  430. * contents must stay the same!); this is not the default to avoid the
  431. * misconception that non-blocking SSL_write() behaves like non-blocking
  432. * write(): */
  433. #define SSL_MODE_ACCEPT_MOVING_WRITE_BUFFER 0x00000002L
  434. /* Don't attempt to automatically build certificate chain */
  435. #define SSL_MODE_NO_AUTO_CHAIN 0x00000008L
  436. /* The following flags do nothing and are included only to make it easier to
  437. * compile code with BoringSSL. */
  438. #define SSL_MODE_AUTO_RETRY 0
  439. #define SSL_MODE_RELEASE_BUFFERS 0
  440. /* Send the current time in the Random fields of the ClientHello and
  441. * ServerHello records for compatibility with hypothetical implementations that
  442. * require it. */
  443. #define SSL_MODE_SEND_CLIENTHELLO_TIME 0x00000020L
  444. #define SSL_MODE_SEND_SERVERHELLO_TIME 0x00000040L
  445. /* Cert related flags */
  446. /* Many implementations ignore some aspects of the TLS standards such as
  447. * enforcing certifcate chain algorithms. When this is set we enforce them. */
  448. #define SSL_CERT_FLAG_TLS_STRICT 0x00000001L
  449. /* Flags for building certificate chains */
  450. /* Treat any existing certificates as untrusted CAs */
  451. #define SSL_BUILD_CHAIN_FLAG_UNTRUSTED 0x1
  452. /* Don't include root CA in chain */
  453. #define SSL_BUILD_CHAIN_FLAG_NO_ROOT 0x2
  454. /* Just check certificates already there */
  455. #define SSL_BUILD_CHAIN_FLAG_CHECK 0x4
  456. /* Ignore verification errors */
  457. #define SSL_BUILD_CHAIN_FLAG_IGNORE_ERROR 0x8
  458. /* Clear verification errors from queue */
  459. #define SSL_BUILD_CHAIN_FLAG_CLEAR_ERROR 0x10
  460. /* SSL_MODE_ENABLE_FALSE_START allows clients to send application data before
  461. * receipt of CCS and Finished. This mode enables full-handshakes to 'complete'
  462. * in one RTT. See draft-bmoeller-tls-falsestart-01. */
  463. #define SSL_MODE_ENABLE_FALSE_START 0x00000080L
  464. /* Deprecated: SSL_MODE_HANDSHAKE_CUTTHROUGH is the same as
  465. * SSL_MODE_ENABLE_FALSE_START. */
  466. #define SSL_MODE_HANDSHAKE_CUTTHROUGH SSL_MODE_ENABLE_FALSE_START
  467. /* When set, TLS 1.0 and SSLv3, multi-byte, CBC records will be split in two:
  468. * the first record will contain a single byte and the second will contain the
  469. * rest of the bytes. This effectively randomises the IV and prevents BEAST
  470. * attacks. */
  471. #define SSL_MODE_CBC_RECORD_SPLITTING 0x00000100L
  472. /* SSL_MODE_NO_SESSION_CREATION will cause any attempts to create a session to
  473. * fail with SSL_R_SESSION_MAY_NOT_BE_CREATED. This can be used to enforce that
  474. * session resumption is used for a given SSL*. */
  475. #define SSL_MODE_NO_SESSION_CREATION 0x00000200L
  476. /* SSL_MODE_SEND_FALLBACK_SCSV sends TLS_FALLBACK_SCSV in the ClientHello.
  477. * To be set only by applications that reconnect with a downgraded protocol
  478. * version; see https://tools.ietf.org/html/draft-ietf-tls-downgrade-scsv-05
  479. * for details.
  480. *
  481. * DO NOT ENABLE THIS if your application attempts a normal handshake. Only use
  482. * this in explicit fallback retries, following the guidance in
  483. * draft-ietf-tls-downgrade-scsv-05. */
  484. #define SSL_MODE_SEND_FALLBACK_SCSV 0x00000400L
  485. /* SSL_CTX_set_options enables all options set in |options| (which should be one
  486. * or more of the |SSL_OP_*| values, ORed together) in |ctx|. It returns a
  487. * bitmask representing the resulting enabled options. */
  488. OPENSSL_EXPORT uint32_t SSL_CTX_set_options(SSL_CTX *ctx, uint32_t options);
  489. /* SSL_CTX_clear_options disables all options set in |options| (which should be
  490. * one or more of the |SSL_OP_*| values, ORed together) in |ctx|. It returns a
  491. * bitmask representing the resulting enabled options. */
  492. OPENSSL_EXPORT uint32_t SSL_CTX_clear_options(SSL_CTX *ctx, uint32_t options);
  493. /* SSL_CTX_get_options returns a bitmask of |SSL_OP_*| values that represent all
  494. * the options enabled for |ctx|. */
  495. OPENSSL_EXPORT uint32_t SSL_CTX_get_options(const SSL_CTX *ctx);
  496. /* SSL_set_options enables all options set in |options| (which should be one or
  497. * more of the |SSL_OP_*| values, ORed together) in |ssl|. It returns a bitmask
  498. * representing the resulting enabled options. */
  499. OPENSSL_EXPORT uint32_t SSL_set_options(SSL *ssl, uint32_t options);
  500. /* SSL_clear_options disables all options set in |options| (which should be one
  501. * or more of the |SSL_OP_*| values, ORed together) in |ssl|. It returns a
  502. * bitmask representing the resulting enabled options. */
  503. OPENSSL_EXPORT uint32_t SSL_clear_options(SSL *ssl, uint32_t options);
  504. /* SSL_get_options returns a bitmask of |SSL_OP_*| values that represent all the
  505. * options enabled for |ssl|. */
  506. OPENSSL_EXPORT uint32_t SSL_get_options(const SSL *ssl);
  507. /* SSL_CTX_set_mode enables all modes set in |mode| (which should be one or more
  508. * of the |SSL_MODE_*| values, ORed together) in |ctx|. It returns a bitmask
  509. * representing the resulting enabled modes. */
  510. OPENSSL_EXPORT uint32_t SSL_CTX_set_mode(SSL_CTX *ctx, uint32_t mode);
  511. /* SSL_CTX_clear_mode disables all modes set in |mode| (which should be one or
  512. * more of the |SSL_MODE_*| values, ORed together) in |ctx|. It returns a
  513. * bitmask representing the resulting enabled modes. */
  514. OPENSSL_EXPORT uint32_t SSL_CTX_clear_mode(SSL_CTX *ctx, uint32_t mode);
  515. /* SSL_CTX_get_mode returns a bitmask of |SSL_MODE_*| values that represent all
  516. * the modes enabled for |ssl|. */
  517. OPENSSL_EXPORT uint32_t SSL_CTX_get_mode(const SSL_CTX *ctx);
  518. /* SSL_set_mode enables all modes set in |mode| (which should be one or more of
  519. * the |SSL_MODE_*| values, ORed together) in |ssl|. It returns a bitmask
  520. * representing the resulting enabled modes. */
  521. OPENSSL_EXPORT uint32_t SSL_set_mode(SSL *ssl, uint32_t mode);
  522. /* SSL_clear_mode disables all modes set in |mode| (which should be one or more
  523. * of the |SSL_MODE_*| values, ORed together) in |ssl|. It returns a bitmask
  524. * representing the resulting enabled modes. */
  525. OPENSSL_EXPORT uint32_t SSL_clear_mode(SSL *ssl, uint32_t mode);
  526. /* SSL_get_mode returns a bitmask of |SSL_MODE_*| values that represent all the
  527. * modes enabled for |ssl|. */
  528. OPENSSL_EXPORT uint32_t SSL_get_mode(const SSL *ssl);
  529. /* SSL_set_mtu sets the |ssl|'s MTU in DTLS to |mtu|. It returns one on success
  530. * and zero on failure. */
  531. OPENSSL_EXPORT int SSL_set_mtu(SSL *ssl, unsigned mtu);
  532. /* SSL_get_secure_renegotiation_support returns one if the peer supports secure
  533. * renegotiation (RFC 5746) and zero otherwise. */
  534. OPENSSL_EXPORT int SSL_get_secure_renegotiation_support(const SSL *ssl);
  535. /* SSL_CTX_set_min_version sets the minimum protocol version for |ctx| to
  536. * |version|. */
  537. OPENSSL_EXPORT void SSL_CTX_set_min_version(SSL_CTX *ctx, uint16_t version);
  538. /* SSL_CTX_set_max_version sets the maximum protocol version for |ctx| to
  539. * |version|. */
  540. OPENSSL_EXPORT void SSL_CTX_set_max_version(SSL_CTX *ctx, uint16_t version);
  541. /* SSL_set_min_version sets the minimum protocol version for |ssl| to
  542. * |version|. */
  543. OPENSSL_EXPORT void SSL_set_min_version(SSL *ssl, uint16_t version);
  544. /* SSL_set_max_version sets the maximum protocol version for |ssl| to
  545. * |version|. */
  546. OPENSSL_EXPORT void SSL_set_max_version(SSL *ssl, uint16_t version);
  547. /* SSL_CTX_set_msg_callback installs |cb| as the message callback for |ctx|.
  548. * This callback will be called when sending or receiving low-level record
  549. * headers, complete handshake messages, ChangeCipherSpec, and alerts.
  550. * |write_p| is one for outgoing messages and zero for incoming messages.
  551. *
  552. * For each record header, |cb| is called with |version| = 0 and |content_type|
  553. * = |SSL3_RT_HEADER|. The |len| bytes from |buf| contain the header. Note that
  554. * this does not include the record body. If the record is sealed, the length
  555. * in the header is the length of the ciphertext.
  556. *
  557. * For each handshake message, ChangeCipherSpec, and alert, |version| is the
  558. * protocol version and |content_type| is the corresponding record type. The
  559. * |len| bytes from |buf| contain the handshake message, one-byte
  560. * ChangeCipherSpec body, and two-byte alert, respectively. */
  561. OPENSSL_EXPORT void SSL_CTX_set_msg_callback(
  562. SSL_CTX *ctx, void (*cb)(int write_p, int version, int content_type,
  563. const void *buf, size_t len, SSL *ssl, void *arg));
  564. /* SSL_CTX_set_msg_callback_arg sets the |arg| parameter of the message
  565. * callback. */
  566. OPENSSL_EXPORT void SSL_CTX_set_msg_callback_arg(SSL_CTX *ctx, void *arg);
  567. /* SSL_set_msg_callback installs |cb| as the message callback of |ssl|. See
  568. * |SSL_CTX_set_msg_callback| for when this callback is called. */
  569. OPENSSL_EXPORT void SSL_set_msg_callback(
  570. SSL *ssl, void (*cb)(int write_p, int version, int content_type,
  571. const void *buf, size_t len, SSL *ssl, void *arg));
  572. /* set_msg_callback_arg sets the |arg| parameter of the message callback. */
  573. OPENSSL_EXPORT void SSL_set_msg_callback_arg(SSL *ssl, void *arg);
  574. /* SSL_CTX_set_keylog_bio sets configures all SSL objects attached to |ctx| to
  575. * log session material to |keylog_bio|. This is intended for debugging use
  576. * with tools like Wireshark. |ctx| takes ownership of |keylog_bio|.
  577. *
  578. * The format is described in
  579. * https://developer.mozilla.org/en-US/docs/Mozilla/Projects/NSS/Key_Log_Format. */
  580. OPENSSL_EXPORT void SSL_CTX_set_keylog_bio(SSL_CTX *ctx, BIO *keylog_bio);
  581. struct ssl_aead_ctx_st;
  582. typedef struct ssl_aead_ctx_st SSL_AEAD_CTX;
  583. #define SSL_MAX_CERT_LIST_DEFAULT 1024 * 100 /* 100k max cert list */
  584. #define SSL_SESSION_CACHE_MAX_SIZE_DEFAULT (1024 * 20)
  585. #define SSL_DEFAULT_SESSION_TIMEOUT (2 * 60 * 60)
  586. /* This callback type is used inside SSL_CTX, SSL, and in the functions that
  587. * set them. It is used to override the generation of SSL/TLS session IDs in a
  588. * server. Return value should be zero on an error, non-zero to proceed. Also,
  589. * callbacks should themselves check if the id they generate is unique
  590. * otherwise the SSL handshake will fail with an error - callbacks can do this
  591. * using the 'ssl' value they're passed by;
  592. * SSL_has_matching_session_id(ssl, id, *id_len)
  593. * The length value passed in is set at the maximum size the session ID can be.
  594. * In SSLv2 this is 16 bytes, whereas SSLv3/TLSv1 it is 32 bytes. The callback
  595. * can alter this length to be less if desired, but under SSLv2 session IDs are
  596. * supposed to be fixed at 16 bytes so the id will be padded after the callback
  597. * returns in this case. It is also an error for the callback to set the size
  598. * to zero. */
  599. typedef int (*GEN_SESSION_CB)(const SSL *ssl, uint8_t *id,
  600. unsigned int *id_len);
  601. /* ssl_early_callback_ctx is passed to certain callbacks that are called very
  602. * early on during the server handshake. At this point, much of the SSL* hasn't
  603. * been filled out and only the ClientHello can be depended on. */
  604. struct ssl_early_callback_ctx {
  605. SSL *ssl;
  606. const uint8_t *client_hello;
  607. size_t client_hello_len;
  608. const uint8_t *session_id;
  609. size_t session_id_len;
  610. const uint8_t *cipher_suites;
  611. size_t cipher_suites_len;
  612. const uint8_t *compression_methods;
  613. size_t compression_methods_len;
  614. const uint8_t *extensions;
  615. size_t extensions_len;
  616. };
  617. /* SSL_early_callback_ctx_extension_get searches the extensions in |ctx| for an
  618. * extension of the given type. If not found, it returns zero. Otherwise it
  619. * sets |out_data| to point to the extension contents (not including the type
  620. * and length bytes), sets |out_len| to the length of the extension contents
  621. * and returns one. */
  622. OPENSSL_EXPORT char SSL_early_callback_ctx_extension_get(
  623. const struct ssl_early_callback_ctx *ctx, uint16_t extension_type,
  624. const uint8_t **out_data, size_t *out_len);
  625. typedef struct ssl_comp_st SSL_COMP;
  626. struct ssl_comp_st {
  627. int id;
  628. const char *name;
  629. char *method;
  630. };
  631. DECLARE_STACK_OF(SSL_COMP)
  632. DECLARE_LHASH_OF(SSL_SESSION)
  633. /* ssl_cipher_preference_list_st contains a list of SSL_CIPHERs with
  634. * equal-preference groups. For TLS clients, the groups are moot because the
  635. * server picks the cipher and groups cannot be expressed on the wire. However,
  636. * for servers, the equal-preference groups allow the client's preferences to
  637. * be partially respected. (This only has an effect with
  638. * SSL_OP_CIPHER_SERVER_PREFERENCE).
  639. *
  640. * The equal-preference groups are expressed by grouping SSL_CIPHERs together.
  641. * All elements of a group have the same priority: no ordering is expressed
  642. * within a group.
  643. *
  644. * The values in |ciphers| are in one-to-one correspondence with
  645. * |in_group_flags|. (That is, sk_SSL_CIPHER_num(ciphers) is the number of
  646. * bytes in |in_group_flags|.) The bytes in |in_group_flags| are either 1, to
  647. * indicate that the corresponding SSL_CIPHER is not the last element of a
  648. * group, or 0 to indicate that it is.
  649. *
  650. * For example, if |in_group_flags| contains all zeros then that indicates a
  651. * traditional, fully-ordered preference. Every SSL_CIPHER is the last element
  652. * of the group (i.e. they are all in a one-element group).
  653. *
  654. * For a more complex example, consider:
  655. * ciphers: A B C D E F
  656. * in_group_flags: 1 1 0 0 1 0
  657. *
  658. * That would express the following, order:
  659. *
  660. * A E
  661. * B -> D -> F
  662. * C
  663. */
  664. struct ssl_cipher_preference_list_st {
  665. STACK_OF(SSL_CIPHER) *ciphers;
  666. uint8_t *in_group_flags;
  667. };
  668. struct ssl_ctx_st {
  669. const SSL_PROTOCOL_METHOD *method;
  670. /* lock is used to protect various operations on this object. */
  671. CRYPTO_MUTEX lock;
  672. /* max_version is the maximum acceptable protocol version. If zero, the
  673. * maximum supported version, currently (D)TLS 1.2, is used. */
  674. uint16_t max_version;
  675. /* min_version is the minimum acceptable protocl version. If zero, the
  676. * minimum supported version, currently SSL 3.0 and DTLS 1.0, is used */
  677. uint16_t min_version;
  678. struct ssl_cipher_preference_list_st *cipher_list;
  679. /* same as above but sorted for lookup */
  680. STACK_OF(SSL_CIPHER) *cipher_list_by_id;
  681. /* cipher_list_tls11 is the list of ciphers when TLS 1.1 or greater is in
  682. * use. This only applies to server connections as, for clients, the version
  683. * number is known at connect time and so the cipher list can be set then. */
  684. struct ssl_cipher_preference_list_st *cipher_list_tls11;
  685. struct x509_store_st /* X509_STORE */ *cert_store;
  686. LHASH_OF(SSL_SESSION) *sessions;
  687. /* Most session-ids that will be cached, default is
  688. * SSL_SESSION_CACHE_MAX_SIZE_DEFAULT. 0 is unlimited. */
  689. unsigned long session_cache_size;
  690. struct ssl_session_st *session_cache_head;
  691. struct ssl_session_st *session_cache_tail;
  692. /* handshakes_since_cache_flush is the number of successful handshakes since
  693. * the last cache flush. */
  694. int handshakes_since_cache_flush;
  695. /* This can have one of 2 values, ored together,
  696. * SSL_SESS_CACHE_CLIENT,
  697. * SSL_SESS_CACHE_SERVER,
  698. * Default is SSL_SESSION_CACHE_SERVER, which means only
  699. * SSL_accept which cache SSL_SESSIONS. */
  700. int session_cache_mode;
  701. /* If timeout is not 0, it is the default timeout value set when SSL_new() is
  702. * called. This has been put in to make life easier to set things up */
  703. long session_timeout;
  704. /* If this callback is not null, it will be called each time a session id is
  705. * added to the cache. If this function returns 1, it means that the
  706. * callback will do a SSL_SESSION_free() when it has finished using it.
  707. * Otherwise, on 0, it means the callback has finished with it. If
  708. * remove_session_cb is not null, it will be called when a session-id is
  709. * removed from the cache. After the call, OpenSSL will SSL_SESSION_free()
  710. * it. */
  711. int (*new_session_cb)(struct ssl_st *ssl, SSL_SESSION *sess);
  712. void (*remove_session_cb)(struct ssl_ctx_st *ctx, SSL_SESSION *sess);
  713. SSL_SESSION *(*get_session_cb)(struct ssl_st *ssl, uint8_t *data, int len,
  714. int *copy);
  715. CRYPTO_refcount_t references;
  716. /* if defined, these override the X509_verify_cert() calls */
  717. int (*app_verify_callback)(X509_STORE_CTX *, void *);
  718. void *app_verify_arg;
  719. /* before OpenSSL 0.9.7, 'app_verify_arg' was ignored ('app_verify_callback'
  720. * was called with just one argument) */
  721. /* Default password callback. */
  722. pem_password_cb *default_passwd_callback;
  723. /* Default password callback user data. */
  724. void *default_passwd_callback_userdata;
  725. /* get client cert callback */
  726. int (*client_cert_cb)(SSL *ssl, X509 **x509, EVP_PKEY **pkey);
  727. /* get channel id callback */
  728. void (*channel_id_cb)(SSL *ssl, EVP_PKEY **pkey);
  729. CRYPTO_EX_DATA ex_data;
  730. STACK_OF(X509) *extra_certs;
  731. /* Default values used when no per-SSL value is defined follow */
  732. void (*info_callback)(const SSL *ssl, int type,
  733. int val); /* used if SSL's info_callback is NULL */
  734. /* what we put in client cert requests */
  735. STACK_OF(X509_NAME) *client_CA;
  736. /* Default values to use in SSL structures follow (these are copied by
  737. * SSL_new) */
  738. uint32_t options;
  739. uint32_t mode;
  740. uint32_t max_cert_list;
  741. struct cert_st /* CERT */ *cert;
  742. int read_ahead;
  743. /* callback that allows applications to peek at protocol messages */
  744. void (*msg_callback)(int write_p, int version, int content_type,
  745. const void *buf, size_t len, SSL *ssl, void *arg);
  746. void *msg_callback_arg;
  747. int verify_mode;
  748. unsigned int sid_ctx_length;
  749. uint8_t sid_ctx[SSL_MAX_SID_CTX_LENGTH];
  750. int (*default_verify_callback)(
  751. int ok, X509_STORE_CTX *ctx); /* called 'verify_callback' in the SSL */
  752. /* Default generate session ID callback. */
  753. GEN_SESSION_CB generate_session_id;
  754. X509_VERIFY_PARAM *param;
  755. /* select_certificate_cb is called before most ClientHello processing and
  756. * before the decision whether to resume a session is made. It may return one
  757. * to continue the handshake or zero to cause the handshake loop to return
  758. * with an error and cause SSL_get_error to return
  759. * SSL_ERROR_PENDING_CERTIFICATE. Note: when the handshake loop is resumed, it
  760. * will not call the callback a second time. */
  761. int (*select_certificate_cb)(const struct ssl_early_callback_ctx *);
  762. /* dos_protection_cb is called once the resumption decision for a ClientHello
  763. * has been made. It returns one to continue the handshake or zero to
  764. * abort. */
  765. int (*dos_protection_cb) (const struct ssl_early_callback_ctx *);
  766. /* quiet_shutdown is true if the connection should not send a close_notify on
  767. * shutdown. */
  768. int quiet_shutdown;
  769. /* Maximum amount of data to send in one fragment. actual record size can be
  770. * more than this due to padding and MAC overheads. */
  771. uint16_t max_send_fragment;
  772. /* TLS extensions servername callback */
  773. int (*tlsext_servername_callback)(SSL *, int *, void *);
  774. void *tlsext_servername_arg;
  775. /* RFC 4507 session ticket keys */
  776. uint8_t tlsext_tick_key_name[16];
  777. uint8_t tlsext_tick_hmac_key[16];
  778. uint8_t tlsext_tick_aes_key[16];
  779. /* Callback to support customisation of ticket key setting */
  780. int (*tlsext_ticket_key_cb)(SSL *ssl, uint8_t *name, uint8_t *iv,
  781. EVP_CIPHER_CTX *ectx, HMAC_CTX *hctx, int enc);
  782. /* Server-only: psk_identity_hint is the default identity hint to send in
  783. * PSK-based key exchanges. */
  784. char *psk_identity_hint;
  785. unsigned int (*psk_client_callback)(SSL *ssl, const char *hint,
  786. char *identity,
  787. unsigned int max_identity_len,
  788. uint8_t *psk, unsigned int max_psk_len);
  789. unsigned int (*psk_server_callback)(SSL *ssl, const char *identity,
  790. uint8_t *psk, unsigned int max_psk_len);
  791. /* retain_only_sha256_of_client_certs is true if we should compute the SHA256
  792. * hash of the peer's certifiate and then discard it to save memory and
  793. * session space. Only effective on the server side. */
  794. char retain_only_sha256_of_client_certs;
  795. /* Next protocol negotiation information */
  796. /* (for experimental NPN extension). */
  797. /* For a server, this contains a callback function by which the set of
  798. * advertised protocols can be provided. */
  799. int (*next_protos_advertised_cb)(SSL *s, const uint8_t **buf,
  800. unsigned int *len, void *arg);
  801. void *next_protos_advertised_cb_arg;
  802. /* For a client, this contains a callback function that selects the
  803. * next protocol from the list provided by the server. */
  804. int (*next_proto_select_cb)(SSL *s, uint8_t **out, uint8_t *outlen,
  805. const uint8_t *in, unsigned int inlen, void *arg);
  806. void *next_proto_select_cb_arg;
  807. /* ALPN information
  808. * (we are in the process of transitioning from NPN to ALPN.) */
  809. /* For a server, this contains a callback function that allows the
  810. * server to select the protocol for the connection.
  811. * out: on successful return, this must point to the raw protocol
  812. * name (without the length prefix).
  813. * outlen: on successful return, this contains the length of |*out|.
  814. * in: points to the client's list of supported protocols in
  815. * wire-format.
  816. * inlen: the length of |in|. */
  817. int (*alpn_select_cb)(SSL *s, const uint8_t **out, uint8_t *outlen,
  818. const uint8_t *in, unsigned int inlen, void *arg);
  819. void *alpn_select_cb_arg;
  820. /* For a client, this contains the list of supported protocols in wire
  821. * format. */
  822. uint8_t *alpn_client_proto_list;
  823. unsigned alpn_client_proto_list_len;
  824. /* SRTP profiles we are willing to do from RFC 5764 */
  825. STACK_OF(SRTP_PROTECTION_PROFILE) *srtp_profiles;
  826. /* EC extension values inherited by SSL structure */
  827. size_t tlsext_ecpointformatlist_length;
  828. uint8_t *tlsext_ecpointformatlist;
  829. size_t tlsext_ellipticcurvelist_length;
  830. uint16_t *tlsext_ellipticcurvelist;
  831. /* If true, a client will advertise the Channel ID extension and a server
  832. * will echo it. */
  833. char tlsext_channel_id_enabled;
  834. /* tlsext_channel_id_enabled_new is a hack to support both old and new
  835. * ChannelID signatures. It indicates that a client should advertise the new
  836. * ChannelID extension number. */
  837. char tlsext_channel_id_enabled_new;
  838. /* The client's Channel ID private key. */
  839. EVP_PKEY *tlsext_channel_id_private;
  840. /* If true, a client will request certificate timestamps. */
  841. char signed_cert_timestamps_enabled;
  842. /* If true, a client will request a stapled OCSP response. */
  843. char ocsp_stapling_enabled;
  844. /* If not NULL, session key material will be logged to this BIO for debugging
  845. * purposes. The format matches NSS's and is readable by Wireshark. */
  846. BIO *keylog_bio;
  847. /* current_time_cb, if not NULL, is the function to use to get the current
  848. * time. It sets |*out_clock| to the current time. */
  849. void (*current_time_cb)(const SSL *ssl, struct timeval *out_clock);
  850. };
  851. OPENSSL_EXPORT LHASH_OF(SSL_SESSION) *SSL_CTX_sessions(SSL_CTX *ctx);
  852. /* SSL_CTX_sess_number returns the number of sessions in |ctx|'s internal
  853. * session cache. */
  854. OPENSSL_EXPORT size_t SSL_CTX_sess_number(const SSL_CTX *ctx);
  855. OPENSSL_EXPORT void SSL_CTX_sess_set_new_cb(
  856. SSL_CTX *ctx, int (*new_session_cb)(struct ssl_st *ssl, SSL_SESSION *sess));
  857. OPENSSL_EXPORT int (*SSL_CTX_sess_get_new_cb(SSL_CTX *ctx))(struct ssl_st *ssl,
  858. SSL_SESSION *sess);
  859. OPENSSL_EXPORT void SSL_CTX_sess_set_remove_cb(
  860. SSL_CTX *ctx,
  861. void (*remove_session_cb)(struct ssl_ctx_st *ctx, SSL_SESSION *sess));
  862. OPENSSL_EXPORT void (*SSL_CTX_sess_get_remove_cb(SSL_CTX *ctx))(
  863. struct ssl_ctx_st *ctx, SSL_SESSION *sess);
  864. OPENSSL_EXPORT void SSL_CTX_sess_set_get_cb(
  865. SSL_CTX *ctx,
  866. SSL_SESSION *(*get_session_cb)(struct ssl_st *ssl, uint8_t *data, int len,
  867. int *copy));
  868. OPENSSL_EXPORT SSL_SESSION *(*SSL_CTX_sess_get_get_cb(SSL_CTX *ctx))(
  869. struct ssl_st *ssl, uint8_t *Data, int len, int *copy);
  870. /* SSL_magic_pending_session_ptr returns a magic SSL_SESSION* which indicates
  871. * that the session isn't currently unavailable. SSL_get_error will then return
  872. * SSL_ERROR_PENDING_SESSION and the handshake can be retried later when the
  873. * lookup has completed. */
  874. OPENSSL_EXPORT SSL_SESSION *SSL_magic_pending_session_ptr(void);
  875. OPENSSL_EXPORT void SSL_CTX_set_info_callback(SSL_CTX *ctx,
  876. void (*cb)(const SSL *ssl,
  877. int type, int val));
  878. OPENSSL_EXPORT void (*SSL_CTX_get_info_callback(SSL_CTX *ctx))(const SSL *ssl,
  879. int type,
  880. int val);
  881. OPENSSL_EXPORT void SSL_CTX_set_client_cert_cb(
  882. SSL_CTX *ctx,
  883. int (*client_cert_cb)(SSL *ssl, X509 **x509, EVP_PKEY **pkey));
  884. OPENSSL_EXPORT int (*SSL_CTX_get_client_cert_cb(SSL_CTX *ctx))(SSL *ssl,
  885. X509 **x509,
  886. EVP_PKEY **pkey);
  887. OPENSSL_EXPORT void SSL_CTX_set_channel_id_cb(
  888. SSL_CTX *ctx, void (*channel_id_cb)(SSL *ssl, EVP_PKEY **pkey));
  889. OPENSSL_EXPORT void (*SSL_CTX_get_channel_id_cb(SSL_CTX *ctx))(SSL *ssl,
  890. EVP_PKEY **pkey);
  891. /* SSL_enable_signed_cert_timestamps causes |ssl| (which must be the client end
  892. * of a connection) to request SCTs from the server. See
  893. * https://tools.ietf.org/html/rfc6962. Returns 1 on success. */
  894. OPENSSL_EXPORT int SSL_enable_signed_cert_timestamps(SSL *ssl);
  895. /* SSL_CTX_enable_signed_cert_timestamps enables SCT requests on all client SSL
  896. * objects created from |ctx|. */
  897. OPENSSL_EXPORT void SSL_CTX_enable_signed_cert_timestamps(SSL_CTX *ctx);
  898. /* SSL_enable_signed_cert_timestamps causes |ssl| (which must be the client end
  899. * of a connection) to request a stapled OCSP response from the server. Returns
  900. * 1 on success. */
  901. OPENSSL_EXPORT int SSL_enable_ocsp_stapling(SSL *ssl);
  902. /* SSL_CTX_enable_ocsp_stapling enables OCSP stapling on all client SSL objects
  903. * created from |ctx|. */
  904. OPENSSL_EXPORT void SSL_CTX_enable_ocsp_stapling(SSL_CTX *ctx);
  905. /* SSL_get0_signed_cert_timestamp_list sets |*out| and |*out_len| to point to
  906. * |*out_len| bytes of SCT information from the server. This is only valid if
  907. * |ssl| is a client. The SCT information is a SignedCertificateTimestampList
  908. * (including the two leading length bytes).
  909. * See https://tools.ietf.org/html/rfc6962#section-3.3
  910. * If no SCT was received then |*out_len| will be zero on return.
  911. *
  912. * WARNING: the returned data is not guaranteed to be well formed. */
  913. OPENSSL_EXPORT void SSL_get0_signed_cert_timestamp_list(const SSL *ssl,
  914. const uint8_t **out,
  915. size_t *out_len);
  916. /* SSL_get0_ocsp_response sets |*out| and |*out_len| to point to |*out_len|
  917. * bytes of an OCSP response from the server. This is the DER encoding of an
  918. * OCSPResponse type as defined in RFC 2560.
  919. *
  920. * WARNING: the returned data is not guaranteed to be well formed. */
  921. OPENSSL_EXPORT void SSL_get0_ocsp_response(const SSL *ssl, const uint8_t **out,
  922. size_t *out_len);
  923. OPENSSL_EXPORT void SSL_CTX_set_next_protos_advertised_cb(
  924. SSL_CTX *s,
  925. int (*cb)(SSL *ssl, const uint8_t **out, unsigned int *outlen, void *arg),
  926. void *arg);
  927. OPENSSL_EXPORT void SSL_CTX_set_next_proto_select_cb(
  928. SSL_CTX *s, int (*cb)(SSL *ssl, uint8_t **out, uint8_t *outlen,
  929. const uint8_t *in, unsigned int inlen, void *arg),
  930. void *arg);
  931. OPENSSL_EXPORT void SSL_get0_next_proto_negotiated(const SSL *s,
  932. const uint8_t **data,
  933. unsigned *len);
  934. OPENSSL_EXPORT int SSL_select_next_proto(uint8_t **out, uint8_t *outlen,
  935. const uint8_t *in, unsigned int inlen,
  936. const uint8_t *client,
  937. unsigned int client_len);
  938. #define OPENSSL_NPN_UNSUPPORTED 0
  939. #define OPENSSL_NPN_NEGOTIATED 1
  940. #define OPENSSL_NPN_NO_OVERLAP 2
  941. /* SSL_CTX_set_alpn_protos sets the ALPN protocol list on |ctx| to |protos|.
  942. * |protos| must be in wire-format (i.e. a series of non-empty, 8-bit
  943. * length-prefixed strings). It returns zero on success and one on failure.
  944. *
  945. * WARNING: this function is dangerous because it breaks the usual return value
  946. * convention. */
  947. OPENSSL_EXPORT int SSL_CTX_set_alpn_protos(SSL_CTX *ctx, const uint8_t *protos,
  948. unsigned protos_len);
  949. /* SSL_set_alpn_protos sets the ALPN protocol list on |ssl| to |protos|.
  950. * |protos| must be in wire-format (i.e. a series of non-empty, 8-bit
  951. * length-prefixed strings). It returns zero on success and one on failure.
  952. *
  953. * WARNING: this function is dangerous because it breaks the usual return value
  954. * convention. */
  955. OPENSSL_EXPORT int SSL_set_alpn_protos(SSL *ssl, const uint8_t *protos,
  956. unsigned protos_len);
  957. OPENSSL_EXPORT void SSL_CTX_set_alpn_select_cb(
  958. SSL_CTX *ctx, int (*cb)(SSL *ssl, const uint8_t **out, uint8_t *outlen,
  959. const uint8_t *in, unsigned int inlen, void *arg),
  960. void *arg);
  961. OPENSSL_EXPORT void SSL_get0_alpn_selected(const SSL *ssl, const uint8_t **data,
  962. unsigned *len);
  963. /* SSL_enable_fastradio_padding controls whether fastradio padding is enabled
  964. * on |ssl|. If it is, ClientHello messages are padded to 1024 bytes. This
  965. * causes 3G radios to switch to DCH mode (high data rate). */
  966. OPENSSL_EXPORT void SSL_enable_fastradio_padding(SSL *ssl, char on_off);
  967. /* SSL_set_reject_peer_renegotiations controls whether renegotiation attempts by
  968. * the peer are rejected. It may be set at any point in a connection's lifetime
  969. * to control future renegotiations programmatically. By default, renegotiations
  970. * are rejected. */
  971. OPENSSL_EXPORT void SSL_set_reject_peer_renegotiations(SSL *ssl, int reject);
  972. /* the maximum length of the buffer given to callbacks containing the resulting
  973. * identity/psk */
  974. #define PSK_MAX_IDENTITY_LEN 128
  975. #define PSK_MAX_PSK_LEN 256
  976. OPENSSL_EXPORT void SSL_CTX_set_psk_client_callback(
  977. SSL_CTX *ctx,
  978. unsigned int (*psk_client_callback)(
  979. SSL *ssl, const char *hint, char *identity,
  980. unsigned int max_identity_len, uint8_t *psk, unsigned int max_psk_len));
  981. OPENSSL_EXPORT void SSL_set_psk_client_callback(
  982. SSL *ssl, unsigned int (*psk_client_callback)(SSL *ssl, const char *hint,
  983. char *identity,
  984. unsigned int max_identity_len,
  985. uint8_t *psk,
  986. unsigned int max_psk_len));
  987. OPENSSL_EXPORT void SSL_CTX_set_psk_server_callback(
  988. SSL_CTX *ctx,
  989. unsigned int (*psk_server_callback)(SSL *ssl, const char *identity,
  990. uint8_t *psk,
  991. unsigned int max_psk_len));
  992. OPENSSL_EXPORT void SSL_set_psk_server_callback(
  993. SSL *ssl,
  994. unsigned int (*psk_server_callback)(SSL *ssl, const char *identity,
  995. uint8_t *psk,
  996. unsigned int max_psk_len));
  997. OPENSSL_EXPORT int SSL_CTX_use_psk_identity_hint(SSL_CTX *ctx,
  998. const char *identity_hint);
  999. OPENSSL_EXPORT int SSL_use_psk_identity_hint(SSL *s, const char *identity_hint);
  1000. OPENSSL_EXPORT const char *SSL_get_psk_identity_hint(const SSL *s);
  1001. OPENSSL_EXPORT const char *SSL_get_psk_identity(const SSL *s);
  1002. OPENSSL_EXPORT void ssl_update_cache(SSL *s, int mode);
  1003. OPENSSL_EXPORT int ssl_get_new_session(SSL *s, int session);
  1004. #define SSL_NOTHING 1
  1005. #define SSL_WRITING 2
  1006. #define SSL_READING 3
  1007. #define SSL_X509_LOOKUP 4
  1008. #define SSL_CHANNEL_ID_LOOKUP 5
  1009. #define SSL_PENDING_SESSION 7
  1010. #define SSL_CERTIFICATE_SELECTION_PENDING 8
  1011. /* These will only be used when doing non-blocking IO */
  1012. #define SSL_want_nothing(s) (SSL_want(s) == SSL_NOTHING)
  1013. #define SSL_want_read(s) (SSL_want(s) == SSL_READING)
  1014. #define SSL_want_write(s) (SSL_want(s) == SSL_WRITING)
  1015. #define SSL_want_x509_lookup(s) (SSL_want(s) == SSL_X509_LOOKUP)
  1016. #define SSL_want_channel_id_lookup(s) (SSL_want(s) == SSL_CHANNEL_ID_LOOKUP)
  1017. #define SSL_want_session(s) (SSL_want(s) == SSL_PENDING_SESSION)
  1018. #define SSL_want_certificate(s) \
  1019. (SSL_want(s) == SSL_CERTIFICATE_SELECTION_PENDING)
  1020. struct ssl_st {
  1021. /* version is the protocol version. */
  1022. int version;
  1023. /* method is the method table corresponding to the current protocol (DTLS or
  1024. * TLS). */
  1025. const SSL_PROTOCOL_METHOD *method;
  1026. /* enc_method is the method table corresponding to the current protocol
  1027. * version. */
  1028. const SSL3_ENC_METHOD *enc_method;
  1029. /* max_version is the maximum acceptable protocol version. If zero, the
  1030. * maximum supported version, currently (D)TLS 1.2, is used. */
  1031. uint16_t max_version;
  1032. /* min_version is the minimum acceptable protocl version. If zero, the
  1033. * minimum supported version, currently SSL 3.0 and DTLS 1.0, is used */
  1034. uint16_t min_version;
  1035. /* There are 2 BIO's even though they are normally both the same. This is so
  1036. * data can be read and written to different handlers */
  1037. BIO *rbio; /* used by SSL_read */
  1038. BIO *wbio; /* used by SSL_write */
  1039. BIO *bbio; /* used during session-id reuse to concatenate
  1040. * messages */
  1041. /* This holds a variable that indicates what we were doing when a 0 or -1 is
  1042. * returned. This is needed for non-blocking IO so we know what request
  1043. * needs re-doing when in SSL_accept or SSL_connect */
  1044. int rwstate;
  1045. /* true when we are actually in SSL_accept() or SSL_connect() */
  1046. int in_handshake;
  1047. int (*handshake_func)(SSL *);
  1048. /* Imagine that here's a boolean member "init" that is switched as soon as
  1049. * SSL_set_{accept/connect}_state is called for the first time, so that
  1050. * "state" and "handshake_func" are properly initialized. But as
  1051. * handshake_func is == 0 until then, we use this test instead of an "init"
  1052. * member. */
  1053. /* server is true iff the this SSL* is the server half. Note: before the SSL*
  1054. * is initialized by either SSL_set_accept_state or SSL_set_connect_state,
  1055. * the side is not determined. In this state, server is always false. */
  1056. int server;
  1057. /* quiet_shutdown is true if the connection should not send a close_notify on
  1058. * shutdown. */
  1059. int quiet_shutdown;
  1060. int shutdown; /* we have shut things down, 0x01 sent, 0x02
  1061. * for received */
  1062. int state; /* where we are */
  1063. int rstate; /* where we are when reading */
  1064. BUF_MEM *init_buf; /* buffer used during init */
  1065. uint8_t *init_msg; /* pointer to handshake message body, set by
  1066. ssl3_get_message() */
  1067. int init_num; /* amount read/written */
  1068. int init_off; /* amount read/written */
  1069. /* used internally to point at a raw packet */
  1070. uint8_t *packet;
  1071. unsigned int packet_length;
  1072. struct ssl3_state_st *s3; /* SSLv3 variables */
  1073. struct dtls1_state_st *d1; /* DTLSv1 variables */
  1074. int read_ahead; /* Read as many input bytes as possible
  1075. * (for non-blocking reads) */
  1076. /* callback that allows applications to peek at protocol messages */
  1077. void (*msg_callback)(int write_p, int version, int content_type,
  1078. const void *buf, size_t len, SSL *ssl, void *arg);
  1079. void *msg_callback_arg;
  1080. int hit; /* reusing a previous session */
  1081. X509_VERIFY_PARAM *param;
  1082. /* crypto */
  1083. struct ssl_cipher_preference_list_st *cipher_list;
  1084. STACK_OF(SSL_CIPHER) *cipher_list_by_id;
  1085. SSL_AEAD_CTX *aead_read_ctx;
  1086. SSL_AEAD_CTX *aead_write_ctx;
  1087. /* session info */
  1088. /* client cert? */
  1089. /* This is used to hold the server certificate used */
  1090. struct cert_st /* CERT */ *cert;
  1091. /* the session_id_context is used to ensure sessions are only reused
  1092. * in the appropriate context */
  1093. unsigned int sid_ctx_length;
  1094. uint8_t sid_ctx[SSL_MAX_SID_CTX_LENGTH];
  1095. /* This can also be in the session once a session is established */
  1096. SSL_SESSION *session;
  1097. /* Default generate session ID callback. */
  1098. GEN_SESSION_CB generate_session_id;
  1099. /* Used in SSL2 and SSL3 */
  1100. int verify_mode; /* 0 don't care about verify failure.
  1101. * 1 fail if verify fails */
  1102. int (*verify_callback)(int ok,
  1103. X509_STORE_CTX *ctx); /* fail if callback returns 0 */
  1104. void (*info_callback)(const SSL *ssl, int type,
  1105. int val); /* optional informational callback */
  1106. /* Server-only: psk_identity_hint is the identity hint to send in
  1107. * PSK-based key exchanges. */
  1108. char *psk_identity_hint;
  1109. unsigned int (*psk_client_callback)(SSL *ssl, const char *hint,
  1110. char *identity,
  1111. unsigned int max_identity_len,
  1112. uint8_t *psk, unsigned int max_psk_len);
  1113. unsigned int (*psk_server_callback)(SSL *ssl, const char *identity,
  1114. uint8_t *psk, unsigned int max_psk_len);
  1115. SSL_CTX *ctx;
  1116. /* extra application data */
  1117. long verify_result;
  1118. CRYPTO_EX_DATA ex_data;
  1119. /* for server side, keep the list of CA_dn we can use */
  1120. STACK_OF(X509_NAME) *client_CA;
  1121. uint32_t options; /* protocol behaviour */
  1122. uint32_t mode; /* API behaviour */
  1123. uint32_t max_cert_list;
  1124. int client_version; /* what was passed, used for
  1125. * SSLv3/TLS rollback check */
  1126. uint16_t max_send_fragment;
  1127. char *tlsext_hostname;
  1128. /* should_ack_sni is true if the SNI extension should be acked. This is
  1129. * only used by a server. */
  1130. char should_ack_sni;
  1131. /* RFC4507 session ticket expected to be received or sent */
  1132. int tlsext_ticket_expected;
  1133. size_t tlsext_ecpointformatlist_length;
  1134. uint8_t *tlsext_ecpointformatlist; /* our list */
  1135. size_t tlsext_ellipticcurvelist_length;
  1136. uint16_t *tlsext_ellipticcurvelist; /* our list */
  1137. SSL_CTX *initial_ctx; /* initial ctx, used to store sessions */
  1138. /* Next protocol negotiation. For the client, this is the protocol that we
  1139. * sent in NextProtocol and is set when handling ServerHello extensions.
  1140. *
  1141. * For a server, this is the client's selected_protocol from NextProtocol and
  1142. * is set when handling the NextProtocol message, before the Finished
  1143. * message. */
  1144. uint8_t *next_proto_negotiated;
  1145. size_t next_proto_negotiated_len;
  1146. /* srtp_profiles is the list of configured SRTP protection profiles for
  1147. * DTLS-SRTP. */
  1148. STACK_OF(SRTP_PROTECTION_PROFILE) *srtp_profiles;
  1149. /* srtp_profile is the selected SRTP protection profile for
  1150. * DTLS-SRTP. */
  1151. const SRTP_PROTECTION_PROFILE *srtp_profile;
  1152. /* Copied from the SSL_CTX. For a server, means that we'll accept Channel IDs
  1153. * from clients. For a client, means that we'll advertise support. */
  1154. char tlsext_channel_id_enabled;
  1155. /* The client's Channel ID private key. */
  1156. EVP_PKEY *tlsext_channel_id_private;
  1157. /* Enable signed certificate time stamps. Currently client only. */
  1158. char signed_cert_timestamps_enabled;
  1159. /* Enable OCSP stapling. Currently client only.
  1160. * TODO(davidben): Add a server-side implementation when it becomes
  1161. * necesary. */
  1162. char ocsp_stapling_enabled;
  1163. /* For a client, this contains the list of supported protocols in wire
  1164. * format. */
  1165. uint8_t *alpn_client_proto_list;
  1166. unsigned alpn_client_proto_list_len;
  1167. int renegotiate; /* 1 if we are renegotiating.
  1168. * 2 if we are a server and are inside a handshake
  1169. * (i.e. not just sending a HelloRequest) */
  1170. /* fastradio_padding, if true, causes ClientHellos to be padded to 1024
  1171. * bytes. This ensures that the cellular radio is fast forwarded to DCH (high
  1172. * data rate) state in 3G networks. */
  1173. char fastradio_padding;
  1174. /* accept_peer_renegotiations, if one, accepts renegotiation attempts from the
  1175. * peer. Otherwise, they will be rejected with a fatal error. */
  1176. char accept_peer_renegotiations;
  1177. /* These fields are always NULL and exist only to keep wpa_supplicant happy
  1178. * about the change to EVP_AEAD. They are only needed for EAP-FAST, which we
  1179. * don't support. */
  1180. EVP_CIPHER_CTX *enc_read_ctx;
  1181. EVP_MD_CTX *read_hash;
  1182. };
  1183. /* compatibility */
  1184. #define SSL_set_app_data(s, arg) (SSL_set_ex_data(s, 0, (char *)arg))
  1185. #define SSL_get_app_data(s) (SSL_get_ex_data(s, 0))
  1186. #define SSL_SESSION_set_app_data(s, a) \
  1187. (SSL_SESSION_set_ex_data(s, 0, (char *)a))
  1188. #define SSL_SESSION_get_app_data(s) (SSL_SESSION_get_ex_data(s, 0))
  1189. #define SSL_CTX_get_app_data(ctx) (SSL_CTX_get_ex_data(ctx, 0))
  1190. #define SSL_CTX_set_app_data(ctx, arg) \
  1191. (SSL_CTX_set_ex_data(ctx, 0, (char *)arg))
  1192. /* The following are the possible values for ssl->state are are used to
  1193. * indicate where we are up to in the SSL connection establishment. The macros
  1194. * that follow are about the only things you should need to use and even then,
  1195. * only when using non-blocking IO. It can also be useful to work out where you
  1196. * were when the connection failed */
  1197. #define SSL_ST_CONNECT 0x1000
  1198. #define SSL_ST_ACCEPT 0x2000
  1199. #define SSL_ST_MASK 0x0FFF
  1200. #define SSL_ST_INIT (SSL_ST_CONNECT | SSL_ST_ACCEPT)
  1201. #define SSL_ST_BEFORE 0x4000
  1202. #define SSL_ST_OK 0x03
  1203. #define SSL_ST_RENEGOTIATE (0x04 | SSL_ST_INIT)
  1204. #define SSL_CB_LOOP 0x01
  1205. #define SSL_CB_EXIT 0x02
  1206. #define SSL_CB_READ 0x04
  1207. #define SSL_CB_WRITE 0x08
  1208. #define SSL_CB_ALERT 0x4000 /* used in callback */
  1209. #define SSL_CB_READ_ALERT (SSL_CB_ALERT | SSL_CB_READ)
  1210. #define SSL_CB_WRITE_ALERT (SSL_CB_ALERT | SSL_CB_WRITE)
  1211. #define SSL_CB_ACCEPT_LOOP (SSL_ST_ACCEPT | SSL_CB_LOOP)
  1212. #define SSL_CB_ACCEPT_EXIT (SSL_ST_ACCEPT | SSL_CB_EXIT)
  1213. #define SSL_CB_CONNECT_LOOP (SSL_ST_CONNECT | SSL_CB_LOOP)
  1214. #define SSL_CB_CONNECT_EXIT (SSL_ST_CONNECT | SSL_CB_EXIT)
  1215. #define SSL_CB_HANDSHAKE_START 0x10
  1216. #define SSL_CB_HANDSHAKE_DONE 0x20
  1217. /* Is the SSL_connection established? */
  1218. #define SSL_get_state(a) SSL_state(a)
  1219. #define SSL_is_init_finished(a) (SSL_state(a) == SSL_ST_OK)
  1220. #define SSL_in_init(a) (SSL_state(a) & SSL_ST_INIT)
  1221. #define SSL_in_before(a) (SSL_state(a) & SSL_ST_BEFORE)
  1222. #define SSL_in_connect_init(a) (SSL_state(a) & SSL_ST_CONNECT)
  1223. #define SSL_in_accept_init(a) (SSL_state(a) & SSL_ST_ACCEPT)
  1224. /* SSL_in_false_start returns one if |s| has a pending unfinished handshake that
  1225. * is in False Start. |SSL_write| may be called at this point without waiting
  1226. * for the peer, but |SSL_read| will require the handshake to be completed. */
  1227. OPENSSL_EXPORT int SSL_in_false_start(const SSL *s);
  1228. /* The following 2 states are kept in ssl->rstate when reads fail,
  1229. * you should not need these */
  1230. #define SSL_ST_READ_HEADER 0xF0
  1231. #define SSL_ST_READ_BODY 0xF1
  1232. #define SSL_ST_READ_DONE 0xF2
  1233. /* Obtain latest Finished message
  1234. * -- that we sent (SSL_get_finished)
  1235. * -- that we expected from peer (SSL_get_peer_finished).
  1236. * Returns length (0 == no Finished so far), copies up to 'count' bytes. */
  1237. OPENSSL_EXPORT size_t SSL_get_finished(const SSL *s, void *buf, size_t count);
  1238. OPENSSL_EXPORT size_t SSL_get_peer_finished(const SSL *s, void *buf, size_t count);
  1239. /* use either SSL_VERIFY_NONE or SSL_VERIFY_PEER, the last 3 options
  1240. * are 'ored' with SSL_VERIFY_PEER if they are desired */
  1241. #define SSL_VERIFY_NONE 0x00
  1242. #define SSL_VERIFY_PEER 0x01
  1243. #define SSL_VERIFY_FAIL_IF_NO_PEER_CERT 0x02
  1244. #define SSL_VERIFY_CLIENT_ONCE 0x04
  1245. #define SSL_VERIFY_PEER_IF_NO_OBC 0x08
  1246. #define OpenSSL_add_ssl_algorithms() SSL_library_init()
  1247. #define SSLeay_add_ssl_algorithms() SSL_library_init()
  1248. /* For backward compatibility */
  1249. #define SSL_get_cipher(s) SSL_CIPHER_get_name(SSL_get_current_cipher(s))
  1250. #define SSL_get_cipher_bits(s, np) \
  1251. SSL_CIPHER_get_bits(SSL_get_current_cipher(s), np)
  1252. #define SSL_get_cipher_version(s) \
  1253. SSL_CIPHER_get_version(SSL_get_current_cipher(s))
  1254. #define SSL_get_cipher_name(s) SSL_CIPHER_get_name(SSL_get_current_cipher(s))
  1255. #define SSL_get_time(a) SSL_SESSION_get_time(a)
  1256. #define SSL_set_time(a, b) SSL_SESSION_set_time((a), (b))
  1257. #define SSL_get_timeout(a) SSL_SESSION_get_timeout(a)
  1258. #define SSL_set_timeout(a, b) SSL_SESSION_set_timeout((a), (b))
  1259. #define d2i_SSL_SESSION_bio(bp, s_id) \
  1260. ASN1_d2i_bio_of(SSL_SESSION, SSL_SESSION_new, d2i_SSL_SESSION, bp, s_id)
  1261. #define i2d_SSL_SESSION_bio(bp, s_id) \
  1262. ASN1_i2d_bio_of(SSL_SESSION, i2d_SSL_SESSION, bp, s_id)
  1263. DECLARE_PEM_rw(SSL_SESSION, SSL_SESSION)
  1264. /* make_errors.go reserves error codes above 1000 for manually-assigned errors.
  1265. * This value must be kept in sync with reservedReasonCode in make_errors.h */
  1266. #define SSL_AD_REASON_OFFSET \
  1267. 1000 /* offset to get SSL_R_... value from SSL_AD_... */
  1268. /* These alert types are for SSLv3 and TLSv1 */
  1269. #define SSL_AD_CLOSE_NOTIFY SSL3_AD_CLOSE_NOTIFY
  1270. #define SSL_AD_UNEXPECTED_MESSAGE SSL3_AD_UNEXPECTED_MESSAGE /* fatal */
  1271. #define SSL_AD_BAD_RECORD_MAC SSL3_AD_BAD_RECORD_MAC /* fatal */
  1272. #define SSL_AD_DECRYPTION_FAILED TLS1_AD_DECRYPTION_FAILED
  1273. #define SSL_AD_RECORD_OVERFLOW TLS1_AD_RECORD_OVERFLOW
  1274. #define SSL_AD_DECOMPRESSION_FAILURE SSL3_AD_DECOMPRESSION_FAILURE /* fatal */
  1275. #define SSL_AD_HANDSHAKE_FAILURE SSL3_AD_HANDSHAKE_FAILURE /* fatal */
  1276. #define SSL_AD_NO_CERTIFICATE SSL3_AD_NO_CERTIFICATE /* Not for TLS */
  1277. #define SSL_AD_BAD_CERTIFICATE SSL3_AD_BAD_CERTIFICATE
  1278. #define SSL_AD_UNSUPPORTED_CERTIFICATE SSL3_AD_UNSUPPORTED_CERTIFICATE
  1279. #define SSL_AD_CERTIFICATE_REVOKED SSL3_AD_CERTIFICATE_REVOKED
  1280. #define SSL_AD_CERTIFICATE_EXPIRED SSL3_AD_CERTIFICATE_EXPIRED
  1281. #define SSL_AD_CERTIFICATE_UNKNOWN SSL3_AD_CERTIFICATE_UNKNOWN
  1282. #define SSL_AD_ILLEGAL_PARAMETER SSL3_AD_ILLEGAL_PARAMETER /* fatal */
  1283. #define SSL_AD_UNKNOWN_CA TLS1_AD_UNKNOWN_CA /* fatal */
  1284. #define SSL_AD_ACCESS_DENIED TLS1_AD_ACCESS_DENIED /* fatal */
  1285. #define SSL_AD_DECODE_ERROR TLS1_AD_DECODE_ERROR /* fatal */
  1286. #define SSL_AD_DECRYPT_ERROR TLS1_AD_DECRYPT_ERROR
  1287. #define SSL_AD_EXPORT_RESTRICTION TLS1_AD_EXPORT_RESTRICTION /* fatal */
  1288. #define SSL_AD_PROTOCOL_VERSION TLS1_AD_PROTOCOL_VERSION /* fatal */
  1289. #define SSL_AD_INSUFFICIENT_SECURITY TLS1_AD_INSUFFICIENT_SECURITY /* fatal */
  1290. #define SSL_AD_INTERNAL_ERROR TLS1_AD_INTERNAL_ERROR /* fatal */
  1291. #define SSL_AD_USER_CANCELLED TLS1_AD_USER_CANCELLED
  1292. #define SSL_AD_NO_RENEGOTIATION TLS1_AD_NO_RENEGOTIATION
  1293. #define SSL_AD_UNSUPPORTED_EXTENSION TLS1_AD_UNSUPPORTED_EXTENSION
  1294. #define SSL_AD_CERTIFICATE_UNOBTAINABLE TLS1_AD_CERTIFICATE_UNOBTAINABLE
  1295. #define SSL_AD_UNRECOGNIZED_NAME TLS1_AD_UNRECOGNIZED_NAME
  1296. #define SSL_AD_BAD_CERTIFICATE_STATUS_RESPONSE \
  1297. TLS1_AD_BAD_CERTIFICATE_STATUS_RESPONSE
  1298. #define SSL_AD_BAD_CERTIFICATE_HASH_VALUE TLS1_AD_BAD_CERTIFICATE_HASH_VALUE
  1299. #define SSL_AD_UNKNOWN_PSK_IDENTITY TLS1_AD_UNKNOWN_PSK_IDENTITY /* fatal */
  1300. #define SSL_AD_INAPPROPRIATE_FALLBACK SSL3_AD_INAPPROPRIATE_FALLBACK /* fatal */
  1301. #define SSL_ERROR_NONE 0
  1302. #define SSL_ERROR_SSL 1
  1303. #define SSL_ERROR_WANT_READ 2
  1304. #define SSL_ERROR_WANT_WRITE 3
  1305. #define SSL_ERROR_WANT_X509_LOOKUP 4
  1306. #define SSL_ERROR_SYSCALL 5 /* look at error stack/return value/errno */
  1307. #define SSL_ERROR_ZERO_RETURN 6
  1308. #define SSL_ERROR_WANT_CONNECT 7
  1309. #define SSL_ERROR_WANT_ACCEPT 8
  1310. #define SSL_ERROR_WANT_CHANNEL_ID_LOOKUP 9
  1311. #define SSL_ERROR_PENDING_SESSION 11
  1312. #define SSL_ERROR_PENDING_CERTIFICATE 12
  1313. #define SSL_CTRL_EXTRA_CHAIN_CERT 14
  1314. /* see tls1.h for macros based on these */
  1315. #define SSL_CTRL_GET_TLSEXT_TICKET_KEYS 58
  1316. #define SSL_CTRL_SET_TLSEXT_TICKET_KEYS 59
  1317. #define SSL_CTRL_SET_SRP_ARG 78
  1318. #define SSL_CTRL_SET_TLS_EXT_SRP_USERNAME 79
  1319. #define SSL_CTRL_SET_TLS_EXT_SRP_STRENGTH 80
  1320. #define SSL_CTRL_SET_TLS_EXT_SRP_PASSWORD 81
  1321. #define SSL_CTRL_GET_EXTRA_CHAIN_CERTS 82
  1322. #define SSL_CTRL_CLEAR_EXTRA_CHAIN_CERTS 83
  1323. #define SSL_CTRL_CHAIN 88
  1324. #define SSL_CTRL_CHAIN_CERT 89
  1325. #define SSL_CTRL_GET_CURVES 90
  1326. #define SSL_CTRL_SET_CURVES 91
  1327. #define SSL_CTRL_SET_CURVES_LIST 92
  1328. #define SSL_CTRL_SET_SIGALGS 97
  1329. #define SSL_CTRL_SET_SIGALGS_LIST 98
  1330. #define SSL_CTRL_SET_CLIENT_SIGALGS 101
  1331. #define SSL_CTRL_SET_CLIENT_SIGALGS_LIST 102
  1332. #define SSL_CTRL_GET_CLIENT_CERT_TYPES 103
  1333. #define SSL_CTRL_SET_CLIENT_CERT_TYPES 104
  1334. #define SSL_CTRL_BUILD_CERT_CHAIN 105
  1335. #define SSL_CTRL_SET_VERIFY_CERT_STORE 106
  1336. #define SSL_CTRL_SET_CHAIN_CERT_STORE 107
  1337. #define SSL_CTRL_GET_SERVER_TMP_KEY 109
  1338. #define SSL_CTRL_GET_EC_POINT_FORMATS 111
  1339. #define SSL_CTRL_GET_CHAIN_CERTS 115
  1340. #define SSL_CTRL_SELECT_CURRENT_CERT 116
  1341. /* DTLSv1_get_timeout queries the next DTLS handshake timeout. If there is a
  1342. * timeout in progress, it sets |*out| to the time remaining and returns one.
  1343. * Otherwise, it returns zero.
  1344. *
  1345. * When the timeout expires, call |DTLSv1_handle_timeout| to handle the
  1346. * retransmit behavior.
  1347. *
  1348. * NOTE: This function must be queried again whenever the handshake state
  1349. * machine changes, including when |DTLSv1_handle_timeout| is called. */
  1350. OPENSSL_EXPORT int DTLSv1_get_timeout(const SSL *ssl, struct timeval *out);
  1351. /* DTLSv1_handle_timeout is called when a DTLS handshake timeout expires. If no
  1352. * timeout had expired, it returns 0. Otherwise, it retransmits the previous
  1353. * flight of handshake messages and returns 1. If too many timeouts had expired
  1354. * without progress or an error occurs, it returns -1.
  1355. *
  1356. * NOTE: The caller's external timer should be compatible with the one |ssl|
  1357. * queries within some fudge factor. Otherwise, the call will be a no-op, but
  1358. * |DTLSv1_get_timeout| will return an updated timeout.
  1359. *
  1360. * WARNING: This function breaks the usual return value convention. */
  1361. OPENSSL_EXPORT int DTLSv1_handle_timeout(SSL *ssl);
  1362. /* SSL_session_reused returns one if |ssl| performed an abbreviated handshake
  1363. * and zero otherwise.
  1364. *
  1365. * TODO(davidben): Hammer down the semantics of this API while a handshake,
  1366. * initial or renego, is in progress. */
  1367. OPENSSL_EXPORT int SSL_session_reused(const SSL *ssl);
  1368. /* SSL_total_renegotiations returns the total number of renegotiation handshakes
  1369. * peformed by |ssl|. This includes the pending renegotiation, if any. */
  1370. OPENSSL_EXPORT int SSL_total_renegotiations(const SSL *ssl);
  1371. /* SSL_CTX_set_tmp_dh configures |ctx| to use the group from |dh| as the group
  1372. * for DHE. Only the group is used, so |dh| needn't have a keypair. It returns
  1373. * one on success and zero on error. */
  1374. OPENSSL_EXPORT int SSL_CTX_set_tmp_dh(SSL_CTX *ctx, const DH *dh);
  1375. /* SSL_set_tmp_dh configures |ssl| to use the group from |dh| as the group for
  1376. * DHE. Only the group is used, so |dh| needn't have a keypair. It returns one
  1377. * on success and zero on error. */
  1378. OPENSSL_EXPORT int SSL_set_tmp_dh(SSL *ssl, const DH *dh);
  1379. /* SSL_CTX_set_tmp_ecdh configures |ctx| to use the curve from |ecdh| as the
  1380. * curve for ephemeral ECDH keys. For historical reasons, this API expects an
  1381. * |EC_KEY|, but only the curve is used. It returns one on success and zero on
  1382. * error. If unset, an appropriate curve will be chosen automatically. (This is
  1383. * recommended.) */
  1384. OPENSSL_EXPORT int SSL_CTX_set_tmp_ecdh(SSL_CTX *ctx, const EC_KEY *ec_key);
  1385. /* SSL_set_tmp_ecdh configures |ssl| to use the curve from |ecdh| as the curve
  1386. * for ephemeral ECDH keys. For historical reasons, this API expects an
  1387. * |EC_KEY|, but only the curve is used. It returns one on success and zero on
  1388. * error. If unset, an appropriate curve will be chosen automatically. (This is
  1389. * recommended.) */
  1390. OPENSSL_EXPORT int SSL_set_tmp_ecdh(SSL *ssl, const EC_KEY *ec_key);
  1391. /* SSL_CTX_enable_tls_channel_id either configures a TLS server to accept TLS
  1392. * client IDs from clients, or configures a client to send TLS client IDs to
  1393. * a server. It returns one. */
  1394. OPENSSL_EXPORT int SSL_CTX_enable_tls_channel_id(SSL_CTX *ctx);
  1395. /* SSL_enable_tls_channel_id either configures a TLS server to accept TLS
  1396. * client IDs from clients, or configure a client to send TLS client IDs to
  1397. * server. It returns one. */
  1398. OPENSSL_EXPORT int SSL_enable_tls_channel_id(SSL *ssl);
  1399. /* SSL_CTX_set1_tls_channel_id configures a TLS client to send a TLS Channel ID
  1400. * to compatible servers. |private_key| must be a P-256 EC key. It returns one
  1401. * on success and zero on error. */
  1402. OPENSSL_EXPORT int SSL_CTX_set1_tls_channel_id(SSL_CTX *ctx,
  1403. EVP_PKEY *private_key);
  1404. /* SSL_set1_tls_channel_id configures a TLS client to send a TLS Channel ID to
  1405. * compatible servers. |private_key| must be a P-256 EC key. It returns one on
  1406. * success and zero on error. */
  1407. OPENSSL_EXPORT int SSL_set1_tls_channel_id(SSL *ssl, EVP_PKEY *private_key);
  1408. /* SSL_get_tls_channel_id gets the client's TLS Channel ID from a server SSL*
  1409. * and copies up to the first |max_out| bytes into |out|. The Channel ID
  1410. * consists of the client's P-256 public key as an (x,y) pair where each is a
  1411. * 32-byte, big-endian field element. It returns 0 if the client didn't offer a
  1412. * Channel ID and the length of the complete Channel ID otherwise. */
  1413. OPENSSL_EXPORT size_t SSL_get_tls_channel_id(SSL *ssl, uint8_t *out,
  1414. size_t max_out);
  1415. #define SSL_CTX_add_extra_chain_cert(ctx, x509) \
  1416. SSL_CTX_ctrl(ctx, SSL_CTRL_EXTRA_CHAIN_CERT, 0, (char *)x509)
  1417. #define SSL_CTX_get_extra_chain_certs(ctx, px509) \
  1418. SSL_CTX_ctrl(ctx, SSL_CTRL_GET_EXTRA_CHAIN_CERTS, 0, px509)
  1419. #define SSL_CTX_get_extra_chain_certs_only(ctx, px509) \
  1420. SSL_CTX_ctrl(ctx, SSL_CTRL_GET_EXTRA_CHAIN_CERTS, 1, px509)
  1421. #define SSL_CTX_clear_extra_chain_certs(ctx) \
  1422. SSL_CTX_ctrl(ctx, SSL_CTRL_CLEAR_EXTRA_CHAIN_CERTS, 0, NULL)
  1423. #define SSL_CTX_set0_chain(ctx, sk) \
  1424. SSL_CTX_ctrl(ctx, SSL_CTRL_CHAIN, 0, (char *)sk)
  1425. #define SSL_CTX_set1_chain(ctx, sk) \
  1426. SSL_CTX_ctrl(ctx, SSL_CTRL_CHAIN, 1, (char *)sk)
  1427. #define SSL_CTX_add0_chain_cert(ctx, x509) \
  1428. SSL_CTX_ctrl(ctx, SSL_CTRL_CHAIN_CERT, 0, (char *)x509)
  1429. #define SSL_CTX_add1_chain_cert(ctx, x509) \
  1430. SSL_CTX_ctrl(ctx, SSL_CTRL_CHAIN_CERT, 1, (char *)x509)
  1431. #define SSL_CTX_get0_chain_certs(ctx, px509) \
  1432. SSL_CTX_ctrl(ctx, SSL_CTRL_GET_CHAIN_CERTS, 0, px509)
  1433. #define SSL_CTX_clear_chain_certs(ctx) SSL_CTX_set0_chain(ctx, NULL)
  1434. #define SSL_CTX_build_cert_chain(ctx, flags) \
  1435. SSL_CTX_ctrl(ctx, SSL_CTRL_BUILD_CERT_CHAIN, flags, NULL)
  1436. #define SSL_CTX_select_current_cert(ctx, x509) \
  1437. SSL_CTX_ctrl(ctx, SSL_CTRL_SELECT_CURRENT_CERT, 0, (char *)x509)
  1438. #define SSL_CTX_set0_verify_cert_store(ctx, st) \
  1439. SSL_CTX_ctrl(ctx, SSL_CTRL_SET_VERIFY_CERT_STORE, 0, (char *)st)
  1440. #define SSL_CTX_set1_verify_cert_store(ctx, st) \
  1441. SSL_CTX_ctrl(ctx, SSL_CTRL_SET_VERIFY_CERT_STORE, 1, (char *)st)
  1442. #define SSL_CTX_set0_chain_cert_store(ctx, st) \
  1443. SSL_CTX_ctrl(ctx, SSL_CTRL_SET_CHAIN_CERT_STORE, 0, (char *)st)
  1444. #define SSL_CTX_set1_chain_cert_store(ctx, st) \
  1445. SSL_CTX_ctrl(ctx, SSL_CTRL_SET_CHAIN_CERT_STORE, 1, (char *)st)
  1446. #define SSL_set0_chain(ctx, sk) SSL_ctrl(ctx, SSL_CTRL_CHAIN, 0, (char *)sk)
  1447. #define SSL_set1_chain(ctx, sk) SSL_ctrl(ctx, SSL_CTRL_CHAIN, 1, (char *)sk)
  1448. #define SSL_add0_chain_cert(ctx, x509) \
  1449. SSL_ctrl(ctx, SSL_CTRL_CHAIN_CERT, 0, (char *)x509)
  1450. #define SSL_add1_chain_cert(ctx, x509) \
  1451. SSL_ctrl(ctx, SSL_CTRL_CHAIN_CERT, 1, (char *)x509)
  1452. #define SSL_get0_chain_certs(ctx, px509) \
  1453. SSL_ctrl(ctx, SSL_CTRL_GET_CHAIN_CERTS, 0, px509)
  1454. #define SSL_clear_chain_certs(ctx) SSL_set0_chain(ctx, NULL)
  1455. #define SSL_build_cert_chain(s, flags) \
  1456. SSL_ctrl(s, SSL_CTRL_BUILD_CERT_CHAIN, flags, NULL)
  1457. #define SSL_select_current_cert(ctx, x509) \
  1458. SSL_ctrl(ctx, SSL_CTRL_SELECT_CURRENT_CERT, 0, (char *)x509)
  1459. #define SSL_set0_verify_cert_store(s, st) \
  1460. SSL_ctrl(s, SSL_CTRL_SET_VERIFY_CERT_STORE, 0, (char *)st)
  1461. #define SSL_set1_verify_cert_store(s, st) \
  1462. SSL_ctrl(s, SSL_CTRL_SET_VERIFY_CERT_STORE, 1, (char *)st)
  1463. #define SSL_set0_chain_cert_store(s, st) \
  1464. SSL_ctrl(s, SSL_CTRL_SET_CHAIN_CERT_STORE, 0, (char *)st)
  1465. #define SSL_set1_chain_cert_store(s, st) \
  1466. SSL_ctrl(s, SSL_CTRL_SET_CHAIN_CERT_STORE, 1, (char *)st)
  1467. #define SSL_get1_curves(ctx, s) SSL_ctrl(ctx, SSL_CTRL_GET_CURVES, 0, (char *)s)
  1468. #define SSL_CTX_set1_curves(ctx, clist, clistlen) \
  1469. SSL_CTX_ctrl(ctx, SSL_CTRL_SET_CURVES, clistlen, (char *)clist)
  1470. #define SSL_CTX_set1_curves_list(ctx, s) \
  1471. SSL_CTX_ctrl(ctx, SSL_CTRL_SET_CURVES_LIST, 0, (char *)s)
  1472. #define SSL_set1_curves(ctx, clist, clistlen) \
  1473. SSL_ctrl(ctx, SSL_CTRL_SET_CURVES, clistlen, (char *)clist)
  1474. #define SSL_set1_curves_list(ctx, s) \
  1475. SSL_ctrl(ctx, SSL_CTRL_SET_CURVES_LIST, 0, (char *)s)
  1476. #define SSL_CTX_set1_sigalgs(ctx, slist, slistlen) \
  1477. SSL_CTX_ctrl(ctx, SSL_CTRL_SET_SIGALGS, slistlen, (int *)slist)
  1478. #define SSL_CTX_set1_sigalgs_list(ctx, s) \
  1479. SSL_CTX_ctrl(ctx, SSL_CTRL_SET_SIGALGS_LIST, 0, (char *)s)
  1480. #define SSL_set1_sigalgs(ctx, slist, slistlen) \
  1481. SSL_ctrl(ctx, SSL_CTRL_SET_SIGALGS, clistlen, (int *)slist)
  1482. #define SSL_set1_sigalgs_list(ctx, s) \
  1483. SSL_ctrl(ctx, SSL_CTRL_SET_SIGALGS_LIST, 0, (char *)s)
  1484. #define SSL_CTX_set1_client_sigalgs(ctx, slist, slistlen) \
  1485. SSL_CTX_ctrl(ctx, SSL_CTRL_SET_CLIENT_SIGALGS, slistlen, (int *)slist)
  1486. #define SSL_CTX_set1_client_sigalgs_list(ctx, s) \
  1487. SSL_CTX_ctrl(ctx, SSL_CTRL_SET_CLIENT_SIGALGS_LIST, 0, (char *)s)
  1488. #define SSL_set1_client_sigalgs(ctx, slist, slistlen) \
  1489. SSL_ctrl(ctx, SSL_CTRL_SET_CLIENT_SIGALGS, clistlen, (int *)slist)
  1490. #define SSL_set1_client_sigalgs_list(ctx, s) \
  1491. SSL_ctrl(ctx, SSL_CTRL_SET_CLIENT_SIGALGS_LIST, 0, (char *)s)
  1492. #define SSL_get0_certificate_types(s, clist) \
  1493. SSL_ctrl(s, SSL_CTRL_GET_CLIENT_CERT_TYPES, 0, (char *)clist)
  1494. #define SSL_CTX_set1_client_certificate_types(ctx, clist, clistlen) \
  1495. SSL_CTX_ctrl(ctx, SSL_CTRL_SET_CLIENT_CERT_TYPES, clistlen, (char *)clist)
  1496. #define SSL_set1_client_certificate_types(s, clist, clistlen) \
  1497. SSL_ctrl(s, SSL_CTRL_SET_CLIENT_CERT_TYPES, clistlen, (char *)clist)
  1498. #define SSL_get_server_tmp_key(s, pk) \
  1499. SSL_ctrl(s, SSL_CTRL_GET_SERVER_TMP_KEY, 0, pk)
  1500. #define SSL_get0_ec_point_formats(s, plst) \
  1501. SSL_ctrl(s, SSL_CTRL_GET_EC_POINT_FORMATS, 0, (char *)plst)
  1502. OPENSSL_EXPORT int SSL_CTX_set_cipher_list(SSL_CTX *, const char *str);
  1503. OPENSSL_EXPORT int SSL_CTX_set_cipher_list_tls11(SSL_CTX *, const char *str);
  1504. OPENSSL_EXPORT SSL_CTX *SSL_CTX_new(const SSL_METHOD *meth);
  1505. OPENSSL_EXPORT void SSL_CTX_free(SSL_CTX *);
  1506. OPENSSL_EXPORT long SSL_CTX_set_timeout(SSL_CTX *ctx, long t);
  1507. OPENSSL_EXPORT long SSL_CTX_get_timeout(const SSL_CTX *ctx);
  1508. OPENSSL_EXPORT X509_STORE *SSL_CTX_get_cert_store(const SSL_CTX *);
  1509. OPENSSL_EXPORT void SSL_CTX_set_cert_store(SSL_CTX *, X509_STORE *);
  1510. OPENSSL_EXPORT int SSL_want(const SSL *s);
  1511. OPENSSL_EXPORT int SSL_clear(SSL *s);
  1512. OPENSSL_EXPORT void SSL_CTX_flush_sessions(SSL_CTX *ctx, long tm);
  1513. /* SSL_get_current_cipher returns the cipher used in the current outgoing
  1514. * connection state, or NULL if the null cipher is active. */
  1515. OPENSSL_EXPORT const SSL_CIPHER *SSL_get_current_cipher(const SSL *s);
  1516. OPENSSL_EXPORT int SSL_get_fd(const SSL *s);
  1517. OPENSSL_EXPORT int SSL_get_rfd(const SSL *s);
  1518. OPENSSL_EXPORT int SSL_get_wfd(const SSL *s);
  1519. OPENSSL_EXPORT const char *SSL_get_cipher_list(const SSL *s, int n);
  1520. OPENSSL_EXPORT int SSL_get_read_ahead(const SSL *s);
  1521. OPENSSL_EXPORT int SSL_pending(const SSL *s);
  1522. OPENSSL_EXPORT int SSL_set_fd(SSL *s, int fd);
  1523. OPENSSL_EXPORT int SSL_set_rfd(SSL *s, int fd);
  1524. OPENSSL_EXPORT int SSL_set_wfd(SSL *s, int fd);
  1525. OPENSSL_EXPORT void SSL_set_bio(SSL *s, BIO *rbio, BIO *wbio);
  1526. OPENSSL_EXPORT BIO *SSL_get_rbio(const SSL *s);
  1527. OPENSSL_EXPORT BIO *SSL_get_wbio(const SSL *s);
  1528. OPENSSL_EXPORT int SSL_set_cipher_list(SSL *s, const char *str);
  1529. OPENSSL_EXPORT void SSL_set_read_ahead(SSL *s, int yes);
  1530. OPENSSL_EXPORT int SSL_get_verify_mode(const SSL *s);
  1531. OPENSSL_EXPORT int SSL_get_verify_depth(const SSL *s);
  1532. OPENSSL_EXPORT int (*SSL_get_verify_callback(const SSL *s))(int,
  1533. X509_STORE_CTX *);
  1534. OPENSSL_EXPORT void SSL_set_verify(SSL *s, int mode,
  1535. int (*callback)(int ok,
  1536. X509_STORE_CTX *ctx));
  1537. OPENSSL_EXPORT void SSL_set_verify_depth(SSL *s, int depth);
  1538. OPENSSL_EXPORT void SSL_set_cert_cb(SSL *s, int (*cb)(SSL *ssl, void *arg),
  1539. void *arg);
  1540. OPENSSL_EXPORT int SSL_use_RSAPrivateKey(SSL *ssl, RSA *rsa);
  1541. OPENSSL_EXPORT int SSL_use_RSAPrivateKey_ASN1(SSL *ssl, uint8_t *d, long len);
  1542. OPENSSL_EXPORT int SSL_use_PrivateKey(SSL *ssl, EVP_PKEY *pkey);
  1543. OPENSSL_EXPORT int SSL_use_PrivateKey_ASN1(int pk, SSL *ssl, const uint8_t *d,
  1544. long len);
  1545. OPENSSL_EXPORT int SSL_use_certificate(SSL *ssl, X509 *x);
  1546. OPENSSL_EXPORT int SSL_use_certificate_ASN1(SSL *ssl, const uint8_t *d,
  1547. int len);
  1548. OPENSSL_EXPORT int SSL_use_RSAPrivateKey_file(SSL *ssl, const char *file,
  1549. int type);
  1550. OPENSSL_EXPORT int SSL_use_PrivateKey_file(SSL *ssl, const char *file,
  1551. int type);
  1552. OPENSSL_EXPORT int SSL_use_certificate_file(SSL *ssl, const char *file,
  1553. int type);
  1554. OPENSSL_EXPORT int SSL_CTX_use_RSAPrivateKey_file(SSL_CTX *ctx,
  1555. const char *file, int type);
  1556. OPENSSL_EXPORT int SSL_CTX_use_PrivateKey_file(SSL_CTX *ctx, const char *file,
  1557. int type);
  1558. OPENSSL_EXPORT int SSL_CTX_use_certificate_file(SSL_CTX *ctx, const char *file,
  1559. int type);
  1560. OPENSSL_EXPORT int SSL_CTX_use_certificate_chain_file(
  1561. SSL_CTX *ctx, const char *file); /* PEM type */
  1562. OPENSSL_EXPORT STACK_OF(X509_NAME) *SSL_load_client_CA_file(const char *file);
  1563. OPENSSL_EXPORT int SSL_add_file_cert_subjects_to_stack(STACK_OF(X509_NAME) *
  1564. stackCAs,
  1565. const char *file);
  1566. OPENSSL_EXPORT int SSL_add_dir_cert_subjects_to_stack(STACK_OF(X509_NAME) *
  1567. stackCAs,
  1568. const char *dir);
  1569. /* SSL_load_error_strings does nothing. */
  1570. OPENSSL_EXPORT void SSL_load_error_strings(void);
  1571. OPENSSL_EXPORT const char *SSL_state_string(const SSL *s);
  1572. OPENSSL_EXPORT const char *SSL_rstate_string(const SSL *s);
  1573. OPENSSL_EXPORT const char *SSL_state_string_long(const SSL *s);
  1574. OPENSSL_EXPORT const char *SSL_rstate_string_long(const SSL *s);
  1575. OPENSSL_EXPORT long SSL_SESSION_get_time(const SSL_SESSION *s);
  1576. OPENSSL_EXPORT long SSL_SESSION_set_time(SSL_SESSION *s, long t);
  1577. OPENSSL_EXPORT long SSL_SESSION_get_timeout(const SSL_SESSION *s);
  1578. OPENSSL_EXPORT long SSL_SESSION_set_timeout(SSL_SESSION *s, long t);
  1579. OPENSSL_EXPORT X509 *SSL_SESSION_get0_peer(SSL_SESSION *s);
  1580. OPENSSL_EXPORT int SSL_SESSION_set1_id_context(SSL_SESSION *s,
  1581. const uint8_t *sid_ctx,
  1582. unsigned int sid_ctx_len);
  1583. OPENSSL_EXPORT SSL_SESSION *SSL_SESSION_new(void);
  1584. OPENSSL_EXPORT const uint8_t *SSL_SESSION_get_id(const SSL_SESSION *s,
  1585. unsigned int *len);
  1586. OPENSSL_EXPORT int SSL_SESSION_print_fp(FILE *fp, const SSL_SESSION *ses);
  1587. OPENSSL_EXPORT int SSL_SESSION_print(BIO *fp, const SSL_SESSION *ses);
  1588. /* SSL_SESSION_up_ref, if |session| is not NULL, increments the reference count
  1589. * of |session|. It then returns |session|. */
  1590. OPENSSL_EXPORT SSL_SESSION *SSL_SESSION_up_ref(SSL_SESSION *session);
  1591. /* SSL_SESSION_free decrements the reference count of |session|. If it reaches
  1592. * zero, all data referenced by |session| and |session| itself are released. */
  1593. OPENSSL_EXPORT void SSL_SESSION_free(SSL_SESSION *session);
  1594. OPENSSL_EXPORT int SSL_set_session(SSL *to, SSL_SESSION *session);
  1595. OPENSSL_EXPORT int SSL_CTX_add_session(SSL_CTX *s, SSL_SESSION *c);
  1596. OPENSSL_EXPORT int SSL_CTX_remove_session(SSL_CTX *, SSL_SESSION *c);
  1597. OPENSSL_EXPORT int SSL_CTX_set_generate_session_id(SSL_CTX *, GEN_SESSION_CB);
  1598. OPENSSL_EXPORT int SSL_set_generate_session_id(SSL *, GEN_SESSION_CB);
  1599. OPENSSL_EXPORT int SSL_has_matching_session_id(const SSL *ssl,
  1600. const uint8_t *id,
  1601. unsigned int id_len);
  1602. /* SSL_SESSION_to_bytes serializes |in| into a newly allocated buffer and sets
  1603. * |*out_data| to that buffer and |*out_len| to its length. The caller takes
  1604. * ownership of the buffer and must call |OPENSSL_free| when done. It returns
  1605. * one on success and zero on error. */
  1606. OPENSSL_EXPORT int SSL_SESSION_to_bytes(SSL_SESSION *in, uint8_t **out_data,
  1607. size_t *out_len);
  1608. /* SSL_SESSION_to_bytes_for_ticket serializes |in|, but excludes the session ID
  1609. * which is not necessary in a session ticket. */
  1610. OPENSSL_EXPORT int SSL_SESSION_to_bytes_for_ticket(SSL_SESSION *in,
  1611. uint8_t **out_data,
  1612. size_t *out_len);
  1613. /* Deprecated: i2d_SSL_SESSION serializes |in| to the bytes pointed to by
  1614. * |*pp|. On success, it returns the number of bytes written and advances |*pp|
  1615. * by that many bytes. On failure, it returns -1. If |pp| is NULL, no bytes are
  1616. * written and only the length is returned.
  1617. *
  1618. * Use SSL_SESSION_to_bytes instead. */
  1619. OPENSSL_EXPORT int i2d_SSL_SESSION(SSL_SESSION *in, uint8_t **pp);
  1620. /* d2i_SSL_SESSION deserializes a serialized buffer contained in the |length|
  1621. * bytes pointed to by |*pp|. It returns the new SSL_SESSION and advances |*pp|
  1622. * by the number of bytes consumed on success and NULL on failure. If |a| is
  1623. * NULL, the caller takes ownership of the new session and must call
  1624. * |SSL_SESSION_free| when done.
  1625. *
  1626. * If |a| and |*a| are not NULL, the SSL_SESSION at |*a| is overridden with the
  1627. * deserialized session rather than allocating a new one. In addition, |a| is
  1628. * not NULL, but |*a| is, |*a| is set to the new SSL_SESSION.
  1629. *
  1630. * Passing a value other than NULL to |a| is deprecated. */
  1631. OPENSSL_EXPORT SSL_SESSION *d2i_SSL_SESSION(SSL_SESSION **a, const uint8_t **pp,
  1632. long length);
  1633. OPENSSL_EXPORT X509 *SSL_get_peer_certificate(const SSL *s);
  1634. OPENSSL_EXPORT STACK_OF(X509) *SSL_get_peer_cert_chain(const SSL *s);
  1635. OPENSSL_EXPORT int SSL_CTX_get_verify_mode(const SSL_CTX *ctx);
  1636. OPENSSL_EXPORT int SSL_CTX_get_verify_depth(const SSL_CTX *ctx);
  1637. OPENSSL_EXPORT int (*SSL_CTX_get_verify_callback(const SSL_CTX *ctx))(
  1638. int, X509_STORE_CTX *);
  1639. OPENSSL_EXPORT void SSL_CTX_set_verify(SSL_CTX *ctx, int mode,
  1640. int (*callback)(int, X509_STORE_CTX *));
  1641. OPENSSL_EXPORT void SSL_CTX_set_verify_depth(SSL_CTX *ctx, int depth);
  1642. OPENSSL_EXPORT void SSL_CTX_set_cert_verify_callback(
  1643. SSL_CTX *ctx, int (*cb)(X509_STORE_CTX *, void *), void *arg);
  1644. OPENSSL_EXPORT void SSL_CTX_set_cert_cb(SSL_CTX *c,
  1645. int (*cb)(SSL *ssl, void *arg),
  1646. void *arg);
  1647. OPENSSL_EXPORT int SSL_CTX_use_RSAPrivateKey(SSL_CTX *ctx, RSA *rsa);
  1648. OPENSSL_EXPORT int SSL_CTX_use_RSAPrivateKey_ASN1(SSL_CTX *ctx,
  1649. const uint8_t *d, long len);
  1650. OPENSSL_EXPORT int SSL_CTX_use_PrivateKey(SSL_CTX *ctx, EVP_PKEY *pkey);
  1651. OPENSSL_EXPORT int SSL_CTX_use_PrivateKey_ASN1(int pk, SSL_CTX *ctx,
  1652. const uint8_t *d, long len);
  1653. OPENSSL_EXPORT int SSL_CTX_use_certificate(SSL_CTX *ctx, X509 *x);
  1654. OPENSSL_EXPORT int SSL_CTX_use_certificate_ASN1(SSL_CTX *ctx, int len,
  1655. const uint8_t *d);
  1656. OPENSSL_EXPORT void SSL_CTX_set_default_passwd_cb(SSL_CTX *ctx,
  1657. pem_password_cb *cb);
  1658. OPENSSL_EXPORT void SSL_CTX_set_default_passwd_cb_userdata(SSL_CTX *ctx,
  1659. void *u);
  1660. OPENSSL_EXPORT int SSL_CTX_check_private_key(const SSL_CTX *ctx);
  1661. OPENSSL_EXPORT int SSL_check_private_key(const SSL *ctx);
  1662. OPENSSL_EXPORT int SSL_CTX_set_session_id_context(SSL_CTX *ctx,
  1663. const uint8_t *sid_ctx,
  1664. unsigned int sid_ctx_len);
  1665. OPENSSL_EXPORT SSL *SSL_new(SSL_CTX *ctx);
  1666. OPENSSL_EXPORT int SSL_set_session_id_context(SSL *ssl, const uint8_t *sid_ctx,
  1667. unsigned int sid_ctx_len);
  1668. OPENSSL_EXPORT int SSL_CTX_set_purpose(SSL_CTX *s, int purpose);
  1669. OPENSSL_EXPORT int SSL_set_purpose(SSL *s, int purpose);
  1670. OPENSSL_EXPORT int SSL_CTX_set_trust(SSL_CTX *s, int trust);
  1671. OPENSSL_EXPORT int SSL_set_trust(SSL *s, int trust);
  1672. OPENSSL_EXPORT int SSL_CTX_set1_param(SSL_CTX *ctx, X509_VERIFY_PARAM *vpm);
  1673. OPENSSL_EXPORT int SSL_set1_param(SSL *ssl, X509_VERIFY_PARAM *vpm);
  1674. OPENSSL_EXPORT X509_VERIFY_PARAM *SSL_CTX_get0_param(SSL_CTX *ctx);
  1675. OPENSSL_EXPORT X509_VERIFY_PARAM *SSL_get0_param(SSL *ssl);
  1676. OPENSSL_EXPORT void SSL_certs_clear(SSL *s);
  1677. OPENSSL_EXPORT void SSL_free(SSL *ssl);
  1678. OPENSSL_EXPORT int SSL_accept(SSL *ssl);
  1679. OPENSSL_EXPORT int SSL_connect(SSL *ssl);
  1680. OPENSSL_EXPORT int SSL_read(SSL *ssl, void *buf, int num);
  1681. OPENSSL_EXPORT int SSL_peek(SSL *ssl, void *buf, int num);
  1682. OPENSSL_EXPORT int SSL_write(SSL *ssl, const void *buf, int num);
  1683. OPENSSL_EXPORT long SSL_ctrl(SSL *ssl, int cmd, long larg, void *parg);
  1684. OPENSSL_EXPORT long SSL_CTX_ctrl(SSL_CTX *ctx, int cmd, long larg, void *parg);
  1685. OPENSSL_EXPORT int SSL_get_error(const SSL *s, int ret_code);
  1686. /* SSL_get_version returns a string describing the TLS version used by |s|. For
  1687. * example, "TLSv1.2" or "SSLv3". */
  1688. OPENSSL_EXPORT const char *SSL_get_version(const SSL *s);
  1689. /* SSL_SESSION_get_version returns a string describing the TLS version used by
  1690. * |sess|. For example, "TLSv1.2" or "SSLv3". */
  1691. OPENSSL_EXPORT const char *SSL_SESSION_get_version(const SSL_SESSION *sess);
  1692. /* TLS_method is the SSL_METHOD used for TLS (and SSLv3) connections. */
  1693. OPENSSL_EXPORT const SSL_METHOD *TLS_method(void);
  1694. /* DTLS_method is the SSL_METHOD used for DTLS connections. */
  1695. OPENSSL_EXPORT const SSL_METHOD *DTLS_method(void);
  1696. OPENSSL_EXPORT STACK_OF(SSL_CIPHER) *SSL_get_ciphers(const SSL *s);
  1697. OPENSSL_EXPORT int SSL_do_handshake(SSL *s);
  1698. OPENSSL_EXPORT int SSL_renegotiate(SSL *s);
  1699. OPENSSL_EXPORT int SSL_renegotiate_pending(SSL *s);
  1700. OPENSSL_EXPORT int SSL_shutdown(SSL *s);
  1701. OPENSSL_EXPORT const char *SSL_alert_type_string_long(int value);
  1702. OPENSSL_EXPORT const char *SSL_alert_type_string(int value);
  1703. OPENSSL_EXPORT const char *SSL_alert_desc_string_long(int value);
  1704. OPENSSL_EXPORT const char *SSL_alert_desc_string(int value);
  1705. OPENSSL_EXPORT void SSL_set_client_CA_list(SSL *s,
  1706. STACK_OF(X509_NAME) *name_list);
  1707. OPENSSL_EXPORT void SSL_CTX_set_client_CA_list(SSL_CTX *ctx,
  1708. STACK_OF(X509_NAME) *name_list);
  1709. OPENSSL_EXPORT STACK_OF(X509_NAME) *SSL_get_client_CA_list(const SSL *s);
  1710. OPENSSL_EXPORT STACK_OF(X509_NAME) *
  1711. SSL_CTX_get_client_CA_list(const SSL_CTX *s);
  1712. OPENSSL_EXPORT int SSL_add_client_CA(SSL *ssl, X509 *x);
  1713. OPENSSL_EXPORT int SSL_CTX_add_client_CA(SSL_CTX *ctx, X509 *x);
  1714. OPENSSL_EXPORT void SSL_set_connect_state(SSL *s);
  1715. OPENSSL_EXPORT void SSL_set_accept_state(SSL *s);
  1716. OPENSSL_EXPORT long SSL_get_default_timeout(const SSL *s);
  1717. OPENSSL_EXPORT STACK_OF(X509_NAME) *SSL_dup_CA_list(STACK_OF(X509_NAME) *sk);
  1718. OPENSSL_EXPORT X509 *SSL_get_certificate(const SSL *ssl);
  1719. OPENSSL_EXPORT /* EVP_PKEY */ struct evp_pkey_st *SSL_get_privatekey(
  1720. const SSL *ssl);
  1721. OPENSSL_EXPORT X509 *SSL_CTX_get0_certificate(const SSL_CTX *ctx);
  1722. OPENSSL_EXPORT EVP_PKEY *SSL_CTX_get0_privatekey(const SSL_CTX *ctx);
  1723. OPENSSL_EXPORT void SSL_CTX_set_quiet_shutdown(SSL_CTX *ctx, int mode);
  1724. OPENSSL_EXPORT int SSL_CTX_get_quiet_shutdown(const SSL_CTX *ctx);
  1725. OPENSSL_EXPORT void SSL_set_quiet_shutdown(SSL *ssl, int mode);
  1726. OPENSSL_EXPORT int SSL_get_quiet_shutdown(const SSL *ssl);
  1727. OPENSSL_EXPORT void SSL_set_shutdown(SSL *ssl, int mode);
  1728. OPENSSL_EXPORT int SSL_get_shutdown(const SSL *ssl);
  1729. OPENSSL_EXPORT int SSL_version(const SSL *ssl);
  1730. OPENSSL_EXPORT int SSL_CTX_set_default_verify_paths(SSL_CTX *ctx);
  1731. OPENSSL_EXPORT int SSL_CTX_load_verify_locations(SSL_CTX *ctx,
  1732. const char *CAfile,
  1733. const char *CApath);
  1734. #define SSL_get0_session SSL_get_session /* just peek at pointer */
  1735. OPENSSL_EXPORT SSL_SESSION *SSL_get_session(const SSL *ssl);
  1736. OPENSSL_EXPORT SSL_SESSION *SSL_get1_session(
  1737. SSL *ssl); /* obtain a reference count */
  1738. OPENSSL_EXPORT SSL_CTX *SSL_get_SSL_CTX(const SSL *ssl);
  1739. OPENSSL_EXPORT SSL_CTX *SSL_set_SSL_CTX(SSL *ssl, SSL_CTX *ctx);
  1740. OPENSSL_EXPORT void SSL_set_info_callback(SSL *ssl,
  1741. void (*cb)(const SSL *ssl, int type,
  1742. int val));
  1743. OPENSSL_EXPORT void (*SSL_get_info_callback(const SSL *ssl))(const SSL *ssl,
  1744. int type, int val);
  1745. OPENSSL_EXPORT int SSL_state(const SSL *ssl);
  1746. OPENSSL_EXPORT void SSL_set_state(SSL *ssl, int state);
  1747. OPENSSL_EXPORT void SSL_set_verify_result(SSL *ssl, long v);
  1748. OPENSSL_EXPORT long SSL_get_verify_result(const SSL *ssl);
  1749. OPENSSL_EXPORT int SSL_set_ex_data(SSL *ssl, int idx, void *data);
  1750. OPENSSL_EXPORT void *SSL_get_ex_data(const SSL *ssl, int idx);
  1751. OPENSSL_EXPORT int SSL_get_ex_new_index(long argl, void *argp,
  1752. CRYPTO_EX_new *new_func,
  1753. CRYPTO_EX_dup *dup_func,
  1754. CRYPTO_EX_free *free_func);
  1755. OPENSSL_EXPORT int SSL_SESSION_set_ex_data(SSL_SESSION *ss, int idx,
  1756. void *data);
  1757. OPENSSL_EXPORT void *SSL_SESSION_get_ex_data(const SSL_SESSION *ss, int idx);
  1758. OPENSSL_EXPORT int SSL_SESSION_get_ex_new_index(long argl, void *argp,
  1759. CRYPTO_EX_new *new_func,
  1760. CRYPTO_EX_dup *dup_func,
  1761. CRYPTO_EX_free *free_func);
  1762. OPENSSL_EXPORT int SSL_CTX_set_ex_data(SSL_CTX *ssl, int idx, void *data);
  1763. OPENSSL_EXPORT void *SSL_CTX_get_ex_data(const SSL_CTX *ssl, int idx);
  1764. OPENSSL_EXPORT int SSL_CTX_get_ex_new_index(long argl, void *argp,
  1765. CRYPTO_EX_new *new_func,
  1766. CRYPTO_EX_dup *dup_func,
  1767. CRYPTO_EX_free *free_func);
  1768. OPENSSL_EXPORT int SSL_get_ex_data_X509_STORE_CTX_idx(void);
  1769. /* SSL_CTX_sess_set_cache_size sets the maximum size of |ctx|'s session cache to
  1770. * |size|. It returns the previous value. */
  1771. OPENSSL_EXPORT unsigned long SSL_CTX_sess_set_cache_size(SSL_CTX *ctx,
  1772. unsigned long size);
  1773. /* SSL_CTX_sess_set_cache_size returns the maximum size of |ctx|'s session
  1774. * cache. */
  1775. OPENSSL_EXPORT unsigned long SSL_CTX_sess_get_cache_size(const SSL_CTX *ctx);
  1776. /* SSL_SESS_CACHE_* are the possible session cache mode bits.
  1777. * TODO(davidben): Document. */
  1778. #define SSL_SESS_CACHE_OFF 0x0000
  1779. #define SSL_SESS_CACHE_CLIENT 0x0001
  1780. #define SSL_SESS_CACHE_SERVER 0x0002
  1781. #define SSL_SESS_CACHE_BOTH (SSL_SESS_CACHE_CLIENT | SSL_SESS_CACHE_SERVER)
  1782. #define SSL_SESS_CACHE_NO_AUTO_CLEAR 0x0080
  1783. #define SSL_SESS_CACHE_NO_INTERNAL_LOOKUP 0x0100
  1784. #define SSL_SESS_CACHE_NO_INTERNAL_STORE 0x0200
  1785. #define SSL_SESS_CACHE_NO_INTERNAL \
  1786. (SSL_SESS_CACHE_NO_INTERNAL_LOOKUP | SSL_SESS_CACHE_NO_INTERNAL_STORE)
  1787. /* SSL_CTX_set_session_cache_mode sets the session cache mode bits for |ctx| to
  1788. * |mode|. It returns the previous value. */
  1789. OPENSSL_EXPORT int SSL_CTX_set_session_cache_mode(SSL_CTX *ctx, int mode);
  1790. /* SSL_CTX_get_session_cache_mode returns the session cache mode bits for
  1791. * |ctx| */
  1792. OPENSSL_EXPORT int SSL_CTX_get_session_cache_mode(const SSL_CTX *ctx);
  1793. /* TODO(davidben): Deprecate read_ahead functions after https://crbug.com/447431
  1794. * is resolved. */
  1795. OPENSSL_EXPORT int SSL_CTX_get_read_ahead(const SSL_CTX *ctx);
  1796. OPENSSL_EXPORT void SSL_CTX_set_read_ahead(SSL_CTX *ctx, int yes);
  1797. /* SSL_CTX_get_max_cert_list returns the maximum length, in bytes, of a peer
  1798. * certificate chain accepted by |ctx|. */
  1799. OPENSSL_EXPORT size_t SSL_CTX_get_max_cert_list(const SSL_CTX *ctx);
  1800. /* SSL_CTX_set_max_cert_list sets the maximum length, in bytes, of a peer
  1801. * certificate chain to |max_cert_list|. This affects how much memory may be
  1802. * consumed during the handshake. */
  1803. OPENSSL_EXPORT void SSL_CTX_set_max_cert_list(SSL_CTX *ctx,
  1804. size_t max_cert_list);
  1805. /* SSL_get_max_cert_list returns the maximum length, in bytes, of a peer
  1806. * certificate chain accepted by |ssl|. */
  1807. OPENSSL_EXPORT size_t SSL_get_max_cert_list(const SSL *ssl);
  1808. /* SSL_set_max_cert_list sets the maximum length, in bytes, of a peer
  1809. * certificate chain to |max_cert_list|. This affects how much memory may be
  1810. * consumed during the handshake. */
  1811. OPENSSL_EXPORT void SSL_set_max_cert_list(SSL *ssl, size_t max_cert_list);
  1812. /* SSL_CTX_set_max_send_fragment sets the maximum length, in bytes, of records
  1813. * sent by |ctx|. Beyond this length, handshake messages and application data
  1814. * will be split into multiple records. */
  1815. OPENSSL_EXPORT void SSL_CTX_set_max_send_fragment(SSL_CTX *ctx,
  1816. size_t max_send_fragment);
  1817. /* SSL_set_max_send_fragment sets the maximum length, in bytes, of records
  1818. * sent by |ssl|. Beyond this length, handshake messages and application data
  1819. * will be split into multiple records. */
  1820. OPENSSL_EXPORT void SSL_set_max_send_fragment(SSL *ssl,
  1821. size_t max_send_fragment);
  1822. /* SSL_CTX_set_tmp_dh_callback configures |ctx| to use |callback| to determine
  1823. * the group for DHE ciphers. |callback| should ignore |is_export| and
  1824. * |keylength| and return a |DH| of the selected group or NULL on error. Only
  1825. * the parameters are used, so the |DH| needn't have a generated keypair.
  1826. *
  1827. * WARNING: The caller does not take ownership of the resulting |DH|, so
  1828. * |callback| must save and release the object elsewhere. */
  1829. OPENSSL_EXPORT void SSL_CTX_set_tmp_dh_callback(
  1830. SSL_CTX *ctx, DH *(*callback)(SSL *ssl, int is_export, int keylength));
  1831. /* SSL_set_tmp_dh_callback configures |ssl| to use |callback| to determine the
  1832. * group for DHE ciphers. |callback| should ignore |is_export| and |keylength|
  1833. * and return a |DH| of the selected group or NULL on error. Only the
  1834. * parameters are used, so the |DH| needn't have a generated keypair.
  1835. *
  1836. * WARNING: The caller does not take ownership of the resulting |DH|, so
  1837. * |callback| must save and release the object elsewhere. */
  1838. OPENSSL_EXPORT void SSL_set_tmp_dh_callback(SSL *ssl,
  1839. DH *(*dh)(SSL *ssl, int is_export,
  1840. int keylength));
  1841. /* SSL_CTX_set_tmp_ecdh_callback configures |ctx| to use |callback| to determine
  1842. * the curve for ephemeral ECDH keys. |callback| should ignore |is_export| and
  1843. * |keylength| and return an |EC_KEY| of the selected curve or NULL on
  1844. * error. Only the curve is used, so the |EC_KEY| needn't have a generated
  1845. * keypair.
  1846. *
  1847. * If the callback is unset, an appropriate curve will be chosen automatically.
  1848. * (This is recommended.)
  1849. *
  1850. * WARNING: The caller does not take ownership of the resulting |EC_KEY|, so
  1851. * |callback| must save and release the object elsewhere. */
  1852. OPENSSL_EXPORT void SSL_CTX_set_tmp_ecdh_callback(
  1853. SSL_CTX *ctx, EC_KEY *(*callback)(SSL *ssl, int is_export, int keylength));
  1854. /* SSL_set_tmp_ecdh_callback configures |ssl| to use |callback| to determine the
  1855. * curve for ephemeral ECDH keys. |callback| should ignore |is_export| and
  1856. * |keylength| and return an |EC_KEY| of the selected curve or NULL on
  1857. * error. Only the curve is used, so the |EC_KEY| needn't have a generated
  1858. * keypair.
  1859. *
  1860. * If the callback is unset, an appropriate curve will be chosen automatically.
  1861. * (This is recommended.)
  1862. *
  1863. * WARNING: The caller does not take ownership of the resulting |EC_KEY|, so
  1864. * |callback| must save and release the object elsewhere. */
  1865. OPENSSL_EXPORT void SSL_set_tmp_ecdh_callback(
  1866. SSL *ssl, EC_KEY *(*callback)(SSL *ssl, int is_export, int keylength));
  1867. OPENSSL_EXPORT const void *SSL_get_current_compression(SSL *s);
  1868. OPENSSL_EXPORT const void *SSL_get_current_expansion(SSL *s);
  1869. OPENSSL_EXPORT int SSL_cache_hit(SSL *s);
  1870. OPENSSL_EXPORT int SSL_is_server(SSL *s);
  1871. /* SSL_CTX_set_dos_protection_cb sets a callback that is called once the
  1872. * resumption decision for a ClientHello has been made. It can return 1 to
  1873. * allow the handshake to continue or zero to cause the handshake to abort. */
  1874. OPENSSL_EXPORT void SSL_CTX_set_dos_protection_cb(
  1875. SSL_CTX *ctx, int (*cb)(const struct ssl_early_callback_ctx *));
  1876. /* SSL_get_structure_sizes returns the sizes of the SSL, SSL_CTX and
  1877. * SSL_SESSION structures so that a test can ensure that outside code agrees on
  1878. * these values. */
  1879. OPENSSL_EXPORT void SSL_get_structure_sizes(size_t *ssl_size,
  1880. size_t *ssl_ctx_size,
  1881. size_t *ssl_session_size);
  1882. OPENSSL_EXPORT void ERR_load_SSL_strings(void);
  1883. /* SSL_get_rc4_state sets |*read_key| and |*write_key| to the RC4 states for
  1884. * the read and write directions. It returns one on success or zero if |ssl|
  1885. * isn't using an RC4-based cipher suite. */
  1886. OPENSSL_EXPORT int SSL_get_rc4_state(const SSL *ssl, const RC4_KEY **read_key,
  1887. const RC4_KEY **write_key);
  1888. /* Deprecated functions. */
  1889. /* SSL_CIPHER_description writes a description of |cipher| into |buf| and
  1890. * returns |buf|. If |buf| is NULL, it returns a newly allocated string, to be
  1891. * freed with |OPENSSL_free|, or NULL on error.
  1892. *
  1893. * The description includes a trailing newline and has the form:
  1894. * AES128-SHA SSLv3 Kx=RSA Au=RSA Enc=AES(128) Mac=SHA1
  1895. *
  1896. * Consider |SSL_CIPHER_get_name| or |SSL_CIPHER_get_rfc_name| instead. */
  1897. OPENSSL_EXPORT const char *SSL_CIPHER_description(const SSL_CIPHER *cipher,
  1898. char *buf, int len);
  1899. /* SSL_CIPHER_get_version returns the string "TLSv1/SSLv3". */
  1900. OPENSSL_EXPORT const char *SSL_CIPHER_get_version(const SSL_CIPHER *cipher);
  1901. /* SSL_COMP_get_compression_methods returns NULL. */
  1902. OPENSSL_EXPORT void *SSL_COMP_get_compression_methods(void);
  1903. /* SSL_COMP_add_compression_method returns one. */
  1904. OPENSSL_EXPORT int SSL_COMP_add_compression_method(int id, void *cm);
  1905. /* SSL_COMP_get_name returns NULL. */
  1906. OPENSSL_EXPORT const char *SSL_COMP_get_name(const void *comp);
  1907. /* SSLv23_method calls |TLS_method|. */
  1908. OPENSSL_EXPORT const SSL_METHOD *SSLv23_method(void);
  1909. /* Version-specific methods behave exactly like |TLS_method| and |DTLS_method|
  1910. * except they also call |SSL_CTX_set_min_version| and |SSL_CTX_set_max_version|
  1911. * to lock connections to that protocol version. */
  1912. OPENSSL_EXPORT const SSL_METHOD *SSLv3_method(void);
  1913. OPENSSL_EXPORT const SSL_METHOD *TLSv1_method(void);
  1914. OPENSSL_EXPORT const SSL_METHOD *TLSv1_1_method(void);
  1915. OPENSSL_EXPORT const SSL_METHOD *TLSv1_2_method(void);
  1916. OPENSSL_EXPORT const SSL_METHOD *DTLSv1_method(void);
  1917. OPENSSL_EXPORT const SSL_METHOD *DTLSv1_2_method(void);
  1918. /* Client- and server-specific methods call their corresponding generic
  1919. * methods. */
  1920. OPENSSL_EXPORT const SSL_METHOD *SSLv23_server_method(void);
  1921. OPENSSL_EXPORT const SSL_METHOD *SSLv23_client_method(void);
  1922. OPENSSL_EXPORT const SSL_METHOD *SSLv3_server_method(void);
  1923. OPENSSL_EXPORT const SSL_METHOD *SSLv3_client_method(void);
  1924. OPENSSL_EXPORT const SSL_METHOD *TLSv1_server_method(void);
  1925. OPENSSL_EXPORT const SSL_METHOD *TLSv1_client_method(void);
  1926. OPENSSL_EXPORT const SSL_METHOD *TLSv1_1_server_method(void);
  1927. OPENSSL_EXPORT const SSL_METHOD *TLSv1_1_client_method(void);
  1928. OPENSSL_EXPORT const SSL_METHOD *TLSv1_2_server_method(void);
  1929. OPENSSL_EXPORT const SSL_METHOD *TLSv1_2_client_method(void);
  1930. OPENSSL_EXPORT const SSL_METHOD *DTLS_server_method(void);
  1931. OPENSSL_EXPORT const SSL_METHOD *DTLS_client_method(void);
  1932. OPENSSL_EXPORT const SSL_METHOD *DTLSv1_server_method(void);
  1933. OPENSSL_EXPORT const SSL_METHOD *DTLSv1_client_method(void);
  1934. OPENSSL_EXPORT const SSL_METHOD *DTLSv1_2_server_method(void);
  1935. OPENSSL_EXPORT const SSL_METHOD *DTLSv1_2_client_method(void);
  1936. /* SSL_CTX_set_tmp_rsa_callback does nothing. */
  1937. OPENSSL_EXPORT void SSL_CTX_set_tmp_rsa_callback(
  1938. SSL_CTX *ctx, RSA *(*cb)(SSL *ssl, int is_export, int keylength));
  1939. /* SSL_set_tmp_rsa_callback does nothing. */
  1940. OPENSSL_EXPORT void SSL_set_tmp_rsa_callback(SSL *ssl,
  1941. RSA *(*cb)(SSL *ssl, int is_export,
  1942. int keylength));
  1943. /* SSL_CTX_sess_connect returns zero. */
  1944. OPENSSL_EXPORT int SSL_CTX_sess_connect(const SSL_CTX *ctx);
  1945. /* SSL_CTX_sess_connect_good returns zero. */
  1946. OPENSSL_EXPORT int SSL_CTX_sess_connect_good(const SSL_CTX *ctx);
  1947. /* SSL_CTX_sess_connect_renegotiate returns zero. */
  1948. OPENSSL_EXPORT int SSL_CTX_sess_connect_renegotiate(const SSL_CTX *ctx);
  1949. /* SSL_CTX_sess_accept returns zero. */
  1950. OPENSSL_EXPORT int SSL_CTX_sess_accept(const SSL_CTX *ctx);
  1951. /* SSL_CTX_sess_accept_renegotiate returns zero. */
  1952. OPENSSL_EXPORT int SSL_CTX_sess_accept_renegotiate(const SSL_CTX *ctx);
  1953. /* SSL_CTX_sess_accept_good returns zero. */
  1954. OPENSSL_EXPORT int SSL_CTX_sess_accept_good(const SSL_CTX *ctx);
  1955. /* SSL_CTX_sess_hits returns zero. */
  1956. OPENSSL_EXPORT int SSL_CTX_sess_hits(const SSL_CTX *ctx);
  1957. /* SSL_CTX_sess_cb_hits returns zero. */
  1958. OPENSSL_EXPORT int SSL_CTX_sess_cb_hits(const SSL_CTX *ctx);
  1959. /* SSL_CTX_sess_misses returns zero. */
  1960. OPENSSL_EXPORT int SSL_CTX_sess_misses(const SSL_CTX *ctx);
  1961. /* SSL_CTX_sess_timeouts returns zero. */
  1962. OPENSSL_EXPORT int SSL_CTX_sess_timeouts(const SSL_CTX *ctx);
  1963. /* SSL_CTX_sess_cache_full returns zero. */
  1964. OPENSSL_EXPORT int SSL_CTX_sess_cache_full(const SSL_CTX *ctx);
  1965. /* SSL_cutthrough_complete calls |SSL_in_false_start|. */
  1966. OPENSSL_EXPORT int SSL_cutthrough_complete(const SSL *s);
  1967. /* SSL_num_renegotiations calls |SSL_total_renegotiations|. */
  1968. OPENSSL_EXPORT int SSL_num_renegotiations(const SSL *ssl);
  1969. /* SSL_CTX_need_tmp_RSA returns zero. */
  1970. OPENSSL_EXPORT int SSL_CTX_need_tmp_RSA(const SSL_CTX *ctx);
  1971. /* SSL_need_tmp_RSA returns zero. */
  1972. OPENSSL_EXPORT int SSL_need_tmp_RSA(const SSL *ssl);
  1973. /* SSL_CTX_set_tmp_rsa returns one. */
  1974. OPENSSL_EXPORT int SSL_CTX_set_tmp_rsa(SSL_CTX *ctx, const RSA *rsa);
  1975. /* SSL_set_tmp_rsa returns one. */
  1976. OPENSSL_EXPORT int SSL_set_tmp_rsa(SSL *ssl, const RSA *rsa);
  1977. /* Android compatibility section.
  1978. *
  1979. * These functions are declared, temporarily, for Android because
  1980. * wpa_supplicant will take a little time to sync with upstream. Outside of
  1981. * Android they'll have no definition. */
  1982. #define SSL_F_SSL_SET_SESSION_TICKET_EXT doesnt_exist
  1983. OPENSSL_EXPORT int SSL_set_session_ticket_ext(SSL *s, void *ext_data,
  1984. int ext_len);
  1985. OPENSSL_EXPORT int SSL_set_session_secret_cb(SSL *s, void *cb, void *arg);
  1986. OPENSSL_EXPORT int SSL_set_session_ticket_ext_cb(SSL *s, void *cb, void *arg);
  1987. OPENSSL_EXPORT int SSL_set_ssl_method(SSL *s, const SSL_METHOD *method);
  1988. #define OPENSSL_VERSION_TEXT "BoringSSL"
  1989. #define SSLEAY_VERSION 0
  1990. /* SSLeay_version is a compatibility function that returns the string
  1991. * "BoringSSL". */
  1992. OPENSSL_EXPORT const char *SSLeay_version(int unused);
  1993. /* Preprocessor compatibility section.
  1994. *
  1995. * Historically, a number of APIs were implemented in OpenSSL as macros and
  1996. * constants to 'ctrl' functions. To avoid breaking #ifdefs in consumers, this
  1997. * section defines a number of legacy macros. */
  1998. #define SSL_CTRL_NEED_TMP_RSA doesnt_exist
  1999. #define SSL_CTRL_SET_TMP_RSA doesnt_exist
  2000. #define SSL_CTRL_SET_TMP_DH doesnt_exist
  2001. #define SSL_CTRL_SET_TMP_ECDH doesnt_exist
  2002. #define SSL_CTRL_SET_TMP_RSA_CB doesnt_exist
  2003. #define SSL_CTRL_SET_TMP_DH_CB doesnt_exist
  2004. #define SSL_CTRL_SET_TMP_ECDH_CB doesnt_exist
  2005. #define SSL_CTRL_GET_SESSION_REUSED doesnt_exist
  2006. #define SSL_CTRL_GET_NUM_RENEGOTIATIONS doesnt_exist
  2007. #define SSL_CTRL_GET_TOTAL_RENEGOTIATIONS doesnt_exist
  2008. #define SSL_CTRL_SET_MSG_CALLBACK doesnt_exist
  2009. #define SSL_CTRL_SET_MSG_CALLBACK_ARG doesnt_exist
  2010. #define SSL_CTRL_SET_MTU doesnt_exist
  2011. #define SSL_CTRL_SESS_NUMBER doesnt_exist
  2012. #define SSL_CTRL_OPTIONS doesnt_exist
  2013. #define SSL_CTRL_MODE doesnt_exist
  2014. #define SSL_CTRL_GET_READ_AHEAD doesnt_exist
  2015. #define SSL_CTRL_SET_READ_AHEAD doesnt_exist
  2016. #define SSL_CTRL_SET_SESS_CACHE_SIZE doesnt_exist
  2017. #define SSL_CTRL_GET_SESS_CACHE_SIZE doesnt_exist
  2018. #define SSL_CTRL_SET_SESS_CACHE_MODE doesnt_exist
  2019. #define SSL_CTRL_GET_SESS_CACHE_MODE doesnt_exist
  2020. #define SSL_CTRL_GET_MAX_CERT_LIST doesnt_exist
  2021. #define SSL_CTRL_SET_MAX_CERT_LIST doesnt_exist
  2022. #define SSL_CTRL_SET_MAX_SEND_FRAGMENT doesnt_exist
  2023. #define SSL_CTRL_SET_TLSEXT_SERVERNAME_CB doesnt_exist
  2024. #define SSL_CTRL_SET_TLSEXT_SERVERNAME_ARG doesnt_exist
  2025. #define SSL_CTRL_SET_TLSEXT_HOSTNAME doesnt_exist
  2026. #define SSL_CTRL_SET_TLSEXT_TICKET_KEY_CB doesnt_exist
  2027. #define DTLS_CTRL_GET_TIMEOUT doesnt_exist
  2028. #define DTLS_CTRL_HANDLE_TIMEOUT doesnt_exist
  2029. #define SSL_CTRL_GET_RI_SUPPORT doesnt_exist
  2030. #define SSL_CTRL_CLEAR_OPTIONS doesnt_exist
  2031. #define SSL_CTRL_CLEAR_MODE doesnt_exist
  2032. #define SSL_CTRL_CHANNEL_ID doesnt_exist
  2033. #define SSL_CTRL_GET_CHANNEL_ID doesnt_exist
  2034. #define SSL_CTRL_SET_CHANNEL_ID doesnt_exist
  2035. #define SSL_CTX_need_tmp_RSA SSL_CTX_need_tmp_RSA
  2036. #define SSL_need_tmp_RSA SSL_need_tmp_RSA
  2037. #define SSL_CTX_set_tmp_rsa SSL_CTX_set_tmp_rsa
  2038. #define SSL_set_tmp_rsa SSL_set_tmp_rsa
  2039. #define SSL_CTX_set_tmp_dh SSL_CTX_set_tmp_dh
  2040. #define SSL_set_tmp_dh SSL_set_tmp_dh
  2041. #define SSL_CTX_set_tmp_ecdh SSL_CTX_set_tmp_ecdh
  2042. #define SSL_set_tmp_ecdh SSL_set_tmp_ecdh
  2043. #define SSL_session_reused SSL_session_reused
  2044. #define SSL_num_renegotiations SSL_num_renegotiations
  2045. #define SSL_total_renegotiations SSL_total_renegotiations
  2046. #define SSL_CTX_set_msg_callback_arg SSL_CTX_set_msg_callback_arg
  2047. #define SSL_set_msg_callback_arg SSL_set_msg_callback_arg
  2048. #define SSL_set_mtu SSL_set_mtu
  2049. #define SSL_CTX_sess_number SSL_CTX_sess_number
  2050. #define SSL_CTX_get_options SSL_CTX_get_options
  2051. #define SSL_CTX_set_options SSL_CTX_set_options
  2052. #define SSL_get_options SSL_get_options
  2053. #define SSL_set_options SSL_set_options
  2054. #define SSL_CTX_get_mode SSL_CTX_get_mode
  2055. #define SSL_CTX_set_mode SSL_CTX_set_mode
  2056. #define SSL_get_mode SSL_get_mode
  2057. #define SSL_set_mode SSL_set_mode
  2058. #define SSL_CTX_get_read_ahead SSL_CTX_get_read_ahead
  2059. #define SSL_CTX_set_read_ahead SSL_CTX_set_read_ahead
  2060. #define SSL_CTX_sess_set_cache_size SSL_CTX_sess_set_cache_size
  2061. #define SSL_CTX_sess_get_cache_size SSL_CTX_sess_get_cache_size
  2062. #define SSL_CTX_set_session_cache_mode SSL_CTX_set_session_cache_mode
  2063. #define SSL_CTX_get_session_cache_mode SSL_CTX_get_session_cache_mode
  2064. #define SSL_CTX_get_max_cert_list SSL_CTX_get_max_cert_list
  2065. #define SSL_get_max_cert_list SSL_get_max_cert_list
  2066. #define SSL_CTX_set_max_cert_list SSL_CTX_set_max_cert_list
  2067. #define SSL_set_max_cert_list SSL_set_max_cert_list
  2068. #define SSL_CTX_set_max_send_fragment SSL_CTX_set_max_send_fragment
  2069. #define SSL_set_max_send_fragment SSL_set_max_send_fragment
  2070. #define SSL_CTX_set_tlsext_servername_callback \
  2071. SSL_CTX_set_tlsext_servername_callback
  2072. #define SSL_CTX_set_tlsext_servername_arg SSL_CTX_set_tlsext_servername_arg
  2073. #define SSL_set_tlsext_host_name SSL_set_tlsext_host_name
  2074. #define SSL_CTX_set_tlsext_ticket_key_cb SSL_CTX_set_tlsext_ticket_key_cb
  2075. #define DTLSv1_get_timeout DTLSv1_get_timeout
  2076. #define DTLSv1_handle_timeout DTLSv1_handle_timeout
  2077. #define SSL_get_secure_renegotiation_support \
  2078. SSL_get_secure_renegotiation_support
  2079. #define SSL_CTX_clear_options SSL_CTX_clear_options
  2080. #define SSL_clear_options SSL_clear_options
  2081. #define SSL_CTX_clear_mode SSL_CTX_clear_mode
  2082. #define SSL_clear_mode SSL_clear_mode
  2083. #define SSL_CTX_enable_tls_channel_id SSL_CTX_enable_tls_channel_id
  2084. #define SSL_enable_tls_channel_id SSL_enable_tls_channel_id
  2085. #define SSL_set1_tls_channel_id SSL_set1_tls_channel_id
  2086. #define SSL_CTX_set1_tls_channel_id SSL_CTX_set1_tls_channel_id
  2087. #define SSL_get_tls_channel_id SSL_get_tls_channel_id
  2088. #if defined(__cplusplus)
  2089. } /* extern C */
  2090. #endif
  2091. /* Library consumers assume these headers are included by ssl.h, but they depend
  2092. * on ssl.h, so include them after all declarations.
  2093. *
  2094. * TODO(davidben): The separation between ssl.h and these version-specific
  2095. * headers introduces circular dependencies and is inconsistent. The function
  2096. * declarations should move to ssl.h. Many of the constants can probably be
  2097. * pruned or unexported. */
  2098. #include <openssl/ssl2.h>
  2099. #include <openssl/ssl3.h>
  2100. #include <openssl/tls1.h> /* This is mostly sslv3 with a few tweaks */
  2101. #include <openssl/ssl23.h>
  2102. #include <openssl/srtp.h> /* Support for the use_srtp extension */
  2103. /* BEGIN ERROR CODES */
  2104. /* The following lines are auto generated by the script make_errors.go. Any
  2105. * changes made after this point may be overwritten when the script is next run.
  2106. */
  2107. #define SSL_F_SSL_CTX_check_private_key 100
  2108. #define SSL_F_SSL_CTX_new 101
  2109. #define SSL_F_SSL_CTX_set_cipher_list 102
  2110. #define SSL_F_SSL_CTX_set_cipher_list_tls11 103
  2111. #define SSL_F_SSL_CTX_set_session_id_context 104
  2112. #define SSL_F_SSL_CTX_use_PrivateKey 105
  2113. #define SSL_F_SSL_CTX_use_PrivateKey_ASN1 106
  2114. #define SSL_F_SSL_CTX_use_PrivateKey_file 107
  2115. #define SSL_F_SSL_CTX_use_RSAPrivateKey 108
  2116. #define SSL_F_SSL_CTX_use_RSAPrivateKey_ASN1 109
  2117. #define SSL_F_SSL_CTX_use_RSAPrivateKey_file 110
  2118. #define SSL_F_SSL_CTX_use_certificate 111
  2119. #define SSL_F_SSL_CTX_use_certificate_ASN1 112
  2120. #define SSL_F_SSL_CTX_use_certificate_chain_file 113
  2121. #define SSL_F_SSL_CTX_use_certificate_file 114
  2122. #define SSL_F_SSL_CTX_use_psk_identity_hint 115
  2123. #define SSL_F_SSL_SESSION_new 116
  2124. #define SSL_F_SSL_SESSION_print_fp 117
  2125. #define SSL_F_SSL_SESSION_set1_id_context 118
  2126. #define SSL_F_SSL_SESSION_to_bytes_full 119
  2127. #define SSL_F_SSL_accept 120
  2128. #define SSL_F_SSL_add_dir_cert_subjects_to_stack 121
  2129. #define SSL_F_SSL_add_file_cert_subjects_to_stack 122
  2130. #define SSL_F_SSL_check_private_key 123
  2131. #define SSL_F_SSL_clear 124
  2132. #define SSL_F_SSL_connect 125
  2133. #define SSL_F_SSL_do_handshake 126
  2134. #define SSL_F_SSL_load_client_CA_file 127
  2135. #define SSL_F_SSL_new 128
  2136. #define SSL_F_SSL_peek 129
  2137. #define SSL_F_SSL_read 130
  2138. #define SSL_F_SSL_renegotiate 131
  2139. #define SSL_F_SSL_set_cipher_list 132
  2140. #define SSL_F_SSL_set_fd 133
  2141. #define SSL_F_SSL_set_rfd 134
  2142. #define SSL_F_SSL_set_session_id_context 135
  2143. #define SSL_F_SSL_set_wfd 136
  2144. #define SSL_F_SSL_shutdown 137
  2145. #define SSL_F_SSL_use_PrivateKey 138
  2146. #define SSL_F_SSL_use_PrivateKey_ASN1 139
  2147. #define SSL_F_SSL_use_PrivateKey_file 140
  2148. #define SSL_F_SSL_use_RSAPrivateKey 141
  2149. #define SSL_F_SSL_use_RSAPrivateKey_ASN1 142
  2150. #define SSL_F_SSL_use_RSAPrivateKey_file 143
  2151. #define SSL_F_SSL_use_certificate 144
  2152. #define SSL_F_SSL_use_certificate_ASN1 145
  2153. #define SSL_F_SSL_use_certificate_file 146
  2154. #define SSL_F_SSL_use_psk_identity_hint 147
  2155. #define SSL_F_SSL_write 148
  2156. #define SSL_F_d2i_SSL_SESSION 149
  2157. #define SSL_F_d2i_SSL_SESSION_get_octet_string 150
  2158. #define SSL_F_d2i_SSL_SESSION_get_string 151
  2159. #define SSL_F_do_ssl3_write 152
  2160. #define SSL_F_dtls1_accept 153
  2161. #define SSL_F_dtls1_buffer_record 154
  2162. #define SSL_F_dtls1_check_timeout_num 155
  2163. #define SSL_F_dtls1_connect 156
  2164. #define SSL_F_dtls1_do_write 157
  2165. #define SSL_F_dtls1_get_hello_verify 158
  2166. #define SSL_F_dtls1_get_message 159
  2167. #define SSL_F_dtls1_get_message_fragment 160
  2168. #define SSL_F_dtls1_preprocess_fragment 161
  2169. #define SSL_F_dtls1_process_record 162
  2170. #define SSL_F_dtls1_read_bytes 163
  2171. #define SSL_F_dtls1_send_hello_verify_request 164
  2172. #define SSL_F_dtls1_write_app_data_bytes 165
  2173. #define SSL_F_i2d_SSL_SESSION 166
  2174. #define SSL_F_ssl3_accept 167
  2175. #define SSL_F_ssl3_cert_verify_hash 169
  2176. #define SSL_F_ssl3_check_cert_and_algorithm 170
  2177. #define SSL_F_ssl3_connect 171
  2178. #define SSL_F_ssl3_ctrl 172
  2179. #define SSL_F_ssl3_ctx_ctrl 173
  2180. #define SSL_F_ssl3_digest_cached_records 174
  2181. #define SSL_F_ssl3_do_change_cipher_spec 175
  2182. #define SSL_F_ssl3_expect_change_cipher_spec 176
  2183. #define SSL_F_ssl3_get_cert_status 177
  2184. #define SSL_F_ssl3_get_cert_verify 178
  2185. #define SSL_F_ssl3_get_certificate_request 179
  2186. #define SSL_F_ssl3_get_channel_id 180
  2187. #define SSL_F_ssl3_get_client_certificate 181
  2188. #define SSL_F_ssl3_get_client_hello 182
  2189. #define SSL_F_ssl3_get_client_key_exchange 183
  2190. #define SSL_F_ssl3_get_finished 184
  2191. #define SSL_F_ssl3_get_initial_bytes 185
  2192. #define SSL_F_ssl3_get_message 186
  2193. #define SSL_F_ssl3_get_new_session_ticket 187
  2194. #define SSL_F_ssl3_get_next_proto 188
  2195. #define SSL_F_ssl3_get_record 189
  2196. #define SSL_F_ssl3_get_server_certificate 190
  2197. #define SSL_F_ssl3_get_server_done 191
  2198. #define SSL_F_ssl3_get_server_hello 192
  2199. #define SSL_F_ssl3_get_server_key_exchange 193
  2200. #define SSL_F_ssl3_get_v2_client_hello 194
  2201. #define SSL_F_ssl3_handshake_mac 195
  2202. #define SSL_F_ssl3_prf 196
  2203. #define SSL_F_ssl3_read_bytes 197
  2204. #define SSL_F_ssl3_read_n 198
  2205. #define SSL_F_ssl3_send_cert_verify 199
  2206. #define SSL_F_ssl3_send_certificate_request 200
  2207. #define SSL_F_ssl3_send_channel_id 201
  2208. #define SSL_F_ssl3_send_client_certificate 202
  2209. #define SSL_F_ssl3_send_client_hello 203
  2210. #define SSL_F_ssl3_send_client_key_exchange 204
  2211. #define SSL_F_ssl3_send_server_certificate 205
  2212. #define SSL_F_ssl3_send_server_hello 206
  2213. #define SSL_F_ssl3_send_server_key_exchange 207
  2214. #define SSL_F_ssl3_setup_read_buffer 208
  2215. #define SSL_F_ssl3_setup_write_buffer 209
  2216. #define SSL_F_ssl3_write_bytes 210
  2217. #define SSL_F_ssl3_write_pending 211
  2218. #define SSL_F_ssl_add_cert_chain 212
  2219. #define SSL_F_ssl_add_cert_to_buf 213
  2220. #define SSL_F_ssl_add_clienthello_renegotiate_ext 214
  2221. #define SSL_F_ssl_add_clienthello_tlsext 215
  2222. #define SSL_F_ssl_add_clienthello_use_srtp_ext 216
  2223. #define SSL_F_ssl_add_serverhello_renegotiate_ext 217
  2224. #define SSL_F_ssl_add_serverhello_tlsext 218
  2225. #define SSL_F_ssl_add_serverhello_use_srtp_ext 219
  2226. #define SSL_F_ssl_build_cert_chain 220
  2227. #define SSL_F_ssl_bytes_to_cipher_list 221
  2228. #define SSL_F_ssl_cert_dup 222
  2229. #define SSL_F_ssl_cert_inst 223
  2230. #define SSL_F_ssl_cert_new 224
  2231. #define SSL_F_ssl_check_serverhello_tlsext 225
  2232. #define SSL_F_ssl_check_srvr_ecc_cert_and_alg 226
  2233. #define SSL_F_ssl_cipher_process_rulestr 227
  2234. #define SSL_F_ssl_cipher_strength_sort 228
  2235. #define SSL_F_ssl_create_cipher_list 229
  2236. #define SSL_F_ssl_ctx_log_master_secret 230
  2237. #define SSL_F_ssl_ctx_log_rsa_client_key_exchange 231
  2238. #define SSL_F_ssl_ctx_make_profiles 232
  2239. #define SSL_F_ssl_get_new_session 233
  2240. #define SSL_F_ssl_get_prev_session 234
  2241. #define SSL_F_ssl_get_server_cert_index 235
  2242. #define SSL_F_ssl_get_sign_pkey 236
  2243. #define SSL_F_ssl_init_wbio_buffer 237
  2244. #define SSL_F_ssl_parse_clienthello_renegotiate_ext 238
  2245. #define SSL_F_ssl_parse_clienthello_tlsext 239
  2246. #define SSL_F_ssl_parse_clienthello_use_srtp_ext 240
  2247. #define SSL_F_ssl_parse_serverhello_renegotiate_ext 241
  2248. #define SSL_F_ssl_parse_serverhello_tlsext 242
  2249. #define SSL_F_ssl_parse_serverhello_use_srtp_ext 243
  2250. #define SSL_F_ssl_scan_clienthello_tlsext 244
  2251. #define SSL_F_ssl_scan_serverhello_tlsext 245
  2252. #define SSL_F_ssl_sess_cert_new 246
  2253. #define SSL_F_ssl_set_cert 247
  2254. #define SSL_F_ssl_set_pkey 248
  2255. #define SSL_F_ssl_verify_cert_chain 252
  2256. #define SSL_F_tls12_check_peer_sigalg 253
  2257. #define SSL_F_tls1_aead_ctx_init 254
  2258. #define SSL_F_tls1_cert_verify_mac 255
  2259. #define SSL_F_tls1_change_cipher_state 256
  2260. #define SSL_F_tls1_change_cipher_state_aead 257
  2261. #define SSL_F_tls1_check_duplicate_extensions 258
  2262. #define SSL_F_tls1_enc 259
  2263. #define SSL_F_tls1_export_keying_material 260
  2264. #define SSL_F_tls1_prf 261
  2265. #define SSL_F_tls1_setup_key_block 262
  2266. #define SSL_F_dtls1_get_buffered_message 263
  2267. #define SSL_F_dtls1_process_fragment 264
  2268. #define SSL_F_dtls1_hm_fragment_new 265
  2269. #define SSL_F_ssl3_seal_record 266
  2270. #define SSL_F_ssl3_record_sequence_update 267
  2271. #define SSL_F_SSL_CTX_set_tmp_dh 268
  2272. #define SSL_F_SSL_CTX_set_tmp_ecdh 269
  2273. #define SSL_F_SSL_set_tmp_dh 270
  2274. #define SSL_F_SSL_set_tmp_ecdh 271
  2275. #define SSL_F_SSL_CTX_set1_tls_channel_id 272
  2276. #define SSL_F_SSL_set1_tls_channel_id 273
  2277. #define SSL_F_SSL_set_tlsext_host_name 274
  2278. #define SSL_F_ssl3_output_cert_chain 275
  2279. #define SSL_R_APP_DATA_IN_HANDSHAKE 100
  2280. #define SSL_R_ATTEMPT_TO_REUSE_SESSION_IN_DIFFERENT_CONTEXT 101
  2281. #define SSL_R_BAD_ALERT 102
  2282. #define SSL_R_BAD_CHANGE_CIPHER_SPEC 103
  2283. #define SSL_R_BAD_DATA_RETURNED_BY_CALLBACK 104
  2284. #define SSL_R_BAD_DH_P_LENGTH 105
  2285. #define SSL_R_BAD_DIGEST_LENGTH 106
  2286. #define SSL_R_BAD_ECC_CERT 107
  2287. #define SSL_R_BAD_ECPOINT 108
  2288. #define SSL_R_BAD_HANDSHAKE_LENGTH 109
  2289. #define SSL_R_BAD_HANDSHAKE_RECORD 110
  2290. #define SSL_R_BAD_HELLO_REQUEST 111
  2291. #define SSL_R_BAD_LENGTH 112
  2292. #define SSL_R_BAD_PACKET_LENGTH 113
  2293. #define SSL_R_BAD_RSA_ENCRYPT 114
  2294. #define SSL_R_BAD_SIGNATURE 115
  2295. #define SSL_R_BAD_SRTP_MKI_VALUE 116
  2296. #define SSL_R_BAD_SRTP_PROTECTION_PROFILE_LIST 117
  2297. #define SSL_R_BAD_SSL_FILETYPE 118
  2298. #define SSL_R_BAD_WRITE_RETRY 119
  2299. #define SSL_R_BIO_NOT_SET 120
  2300. #define SSL_R_BN_LIB 121
  2301. #define SSL_R_CANNOT_SERIALIZE_PUBLIC_KEY 122
  2302. #define SSL_R_CA_DN_LENGTH_MISMATCH 123
  2303. #define SSL_R_CA_DN_TOO_LONG 124
  2304. #define SSL_R_CCS_RECEIVED_EARLY 125
  2305. #define SSL_R_CERTIFICATE_VERIFY_FAILED 126
  2306. #define SSL_R_CERT_CB_ERROR 127
  2307. #define SSL_R_CERT_LENGTH_MISMATCH 128
  2308. #define SSL_R_CHANNEL_ID_NOT_P256 129
  2309. #define SSL_R_CHANNEL_ID_SIGNATURE_INVALID 130
  2310. #define SSL_R_CIPHER_CODE_WRONG_LENGTH 131
  2311. #define SSL_R_CIPHER_OR_HASH_UNAVAILABLE 132
  2312. #define SSL_R_CLIENTHELLO_PARSE_FAILED 133
  2313. #define SSL_R_CLIENTHELLO_TLSEXT 134
  2314. #define SSL_R_CONNECTION_REJECTED 135
  2315. #define SSL_R_CONNECTION_TYPE_NOT_SET 136
  2316. #define SSL_R_COOKIE_MISMATCH 137
  2317. #define SSL_R_D2I_ECDSA_SIG 138
  2318. #define SSL_R_DATA_BETWEEN_CCS_AND_FINISHED 139
  2319. #define SSL_R_DATA_LENGTH_TOO_LONG 140
  2320. #define SSL_R_DECODE_ERROR 141
  2321. #define SSL_R_DECRYPTION_FAILED 142
  2322. #define SSL_R_DECRYPTION_FAILED_OR_BAD_RECORD_MAC 143
  2323. #define SSL_R_DH_PUBLIC_VALUE_LENGTH_IS_WRONG 144
  2324. #define SSL_R_DIGEST_CHECK_FAILED 145
  2325. #define SSL_R_DTLS_MESSAGE_TOO_BIG 146
  2326. #define SSL_R_ECC_CERT_NOT_FOR_SIGNING 147
  2327. #define SSL_R_EMPTY_SRTP_PROTECTION_PROFILE_LIST 148
  2328. #define SSL_R_ENCRYPTED_LENGTH_TOO_LONG 149
  2329. #define SSL_R_ERROR_IN_RECEIVED_CIPHER_LIST 150
  2330. #define SSL_R_EVP_DIGESTSIGNFINAL_FAILED 151
  2331. #define SSL_R_EVP_DIGESTSIGNINIT_FAILED 152
  2332. #define SSL_R_EXCESSIVE_MESSAGE_SIZE 153
  2333. #define SSL_R_EXTRA_DATA_IN_MESSAGE 154
  2334. #define SSL_R_GOT_A_FIN_BEFORE_A_CCS 155
  2335. #define SSL_R_GOT_CHANNEL_ID_BEFORE_A_CCS 156
  2336. #define SSL_R_GOT_NEXT_PROTO_BEFORE_A_CCS 157
  2337. #define SSL_R_GOT_NEXT_PROTO_WITHOUT_EXTENSION 158
  2338. #define SSL_R_HANDSHAKE_FAILURE_ON_CLIENT_HELLO 159
  2339. #define SSL_R_HANDSHAKE_RECORD_BEFORE_CCS 160
  2340. #define SSL_R_HTTPS_PROXY_REQUEST 161
  2341. #define SSL_R_HTTP_REQUEST 162
  2342. #define SSL_R_INAPPROPRIATE_FALLBACK 163
  2343. #define SSL_R_INVALID_COMMAND 164
  2344. #define SSL_R_INVALID_MESSAGE 165
  2345. #define SSL_R_INVALID_SSL_SESSION 166
  2346. #define SSL_R_INVALID_TICKET_KEYS_LENGTH 167
  2347. #define SSL_R_LENGTH_MISMATCH 168
  2348. #define SSL_R_LIBRARY_HAS_NO_CIPHERS 169
  2349. #define SSL_R_MISSING_DH_KEY 170
  2350. #define SSL_R_MISSING_ECDSA_SIGNING_CERT 171
  2351. #define SSL_R_MISSING_RSA_CERTIFICATE 172
  2352. #define SSL_R_MISSING_RSA_ENCRYPTING_CERT 173
  2353. #define SSL_R_MISSING_RSA_SIGNING_CERT 174
  2354. #define SSL_R_MISSING_TMP_DH_KEY 175
  2355. #define SSL_R_MISSING_TMP_ECDH_KEY 176
  2356. #define SSL_R_MIXED_SPECIAL_OPERATOR_WITH_GROUPS 177
  2357. #define SSL_R_MTU_TOO_SMALL 178
  2358. #define SSL_R_NESTED_GROUP 179
  2359. #define SSL_R_NO_CERTIFICATES_RETURNED 180
  2360. #define SSL_R_NO_CERTIFICATE_ASSIGNED 181
  2361. #define SSL_R_NO_CERTIFICATE_SET 182
  2362. #define SSL_R_NO_CIPHERS_AVAILABLE 183
  2363. #define SSL_R_NO_CIPHERS_PASSED 184
  2364. #define SSL_R_NO_CIPHERS_SPECIFIED 185
  2365. #define SSL_R_NO_CIPHER_MATCH 186
  2366. #define SSL_R_NO_COMPRESSION_SPECIFIED 187
  2367. #define SSL_R_NO_METHOD_SPECIFIED 188
  2368. #define SSL_R_NO_P256_SUPPORT 189
  2369. #define SSL_R_NO_PRIVATE_KEY_ASSIGNED 190
  2370. #define SSL_R_NO_RENEGOTIATION 191
  2371. #define SSL_R_NO_REQUIRED_DIGEST 192
  2372. #define SSL_R_NO_SHARED_CIPHER 193
  2373. #define SSL_R_NO_SHARED_SIGATURE_ALGORITHMS 194
  2374. #define SSL_R_NO_SRTP_PROFILES 195
  2375. #define SSL_R_NULL_SSL_CTX 196
  2376. #define SSL_R_NULL_SSL_METHOD_PASSED 197
  2377. #define SSL_R_OLD_SESSION_CIPHER_NOT_RETURNED 198
  2378. #define SSL_R_PACKET_LENGTH_TOO_LONG 199
  2379. #define SSL_R_PARSE_TLSEXT 200
  2380. #define SSL_R_PATH_TOO_LONG 201
  2381. #define SSL_R_PEER_DID_NOT_RETURN_A_CERTIFICATE 202
  2382. #define SSL_R_PEER_ERROR_UNSUPPORTED_CERTIFICATE_TYPE 203
  2383. #define SSL_R_PROTOCOL_IS_SHUTDOWN 204
  2384. #define SSL_R_PSK_IDENTITY_NOT_FOUND 205
  2385. #define SSL_R_PSK_NO_CLIENT_CB 206
  2386. #define SSL_R_PSK_NO_SERVER_CB 207
  2387. #define SSL_R_READ_BIO_NOT_SET 208
  2388. #define SSL_R_READ_TIMEOUT_EXPIRED 209
  2389. #define SSL_R_RECORD_LENGTH_MISMATCH 210
  2390. #define SSL_R_RECORD_TOO_LARGE 211
  2391. #define SSL_R_RENEGOTIATE_EXT_TOO_LONG 212
  2392. #define SSL_R_RENEGOTIATION_ENCODING_ERR 213
  2393. #define SSL_R_RENEGOTIATION_MISMATCH 214
  2394. #define SSL_R_REQUIRED_CIPHER_MISSING 215
  2395. #define SSL_R_SCSV_RECEIVED_WHEN_RENEGOTIATING 216
  2396. #define SSL_R_SERVERHELLO_TLSEXT 217
  2397. #define SSL_R_SESSION_ID_CONTEXT_UNINITIALIZED 218
  2398. #define SSL_R_SESSION_MAY_NOT_BE_CREATED 219
  2399. #define SSL_R_SIGNATURE_ALGORITHMS_ERROR 220
  2400. #define SSL_R_SRTP_COULD_NOT_ALLOCATE_PROFILES 221
  2401. #define SSL_R_SRTP_PROTECTION_PROFILE_LIST_TOO_LONG 222
  2402. #define SSL_R_SRTP_UNKNOWN_PROTECTION_PROFILE 223
  2403. #define SSL_R_SSL3_EXT_INVALID_SERVERNAME 224
  2404. #define SSL_R_SSL3_EXT_INVALID_SERVERNAME_TYPE 225
  2405. #define SSL_R_SSL_CTX_HAS_NO_DEFAULT_SSL_VERSION 226
  2406. #define SSL_R_SSL_HANDSHAKE_FAILURE 227
  2407. #define SSL_R_SSL_SESSION_ID_CALLBACK_FAILED 228
  2408. #define SSL_R_SSL_SESSION_ID_CONFLICT 229
  2409. #define SSL_R_SSL_SESSION_ID_CONTEXT_TOO_LONG 230
  2410. #define SSL_R_SSL_SESSION_ID_HAS_BAD_LENGTH 231
  2411. #define SSL_R_TLS_CLIENT_CERT_REQ_WITH_ANON_CIPHER 232
  2412. #define SSL_R_TLS_ILLEGAL_EXPORTER_LABEL 233
  2413. #define SSL_R_TLS_INVALID_ECPOINTFORMAT_LIST 234
  2414. #define SSL_R_TLS_PEER_DID_NOT_RESPOND_WITH_CERTIFICATE_LIST 235
  2415. #define SSL_R_TLS_RSA_ENCRYPTED_VALUE_LENGTH_IS_WRONG 236
  2416. #define SSL_R_TOO_MANY_EMPTY_FRAGMENTS 237
  2417. #define SSL_R_UNABLE_TO_FIND_ECDH_PARAMETERS 238
  2418. #define SSL_R_UNABLE_TO_FIND_PUBLIC_KEY_PARAMETERS 239
  2419. #define SSL_R_UNEXPECTED_GROUP_CLOSE 240
  2420. #define SSL_R_UNEXPECTED_MESSAGE 241
  2421. #define SSL_R_UNEXPECTED_OPERATOR_IN_GROUP 242
  2422. #define SSL_R_UNEXPECTED_RECORD 243
  2423. #define SSL_R_UNINITIALIZED 244
  2424. #define SSL_R_UNKNOWN_ALERT_TYPE 245
  2425. #define SSL_R_UNKNOWN_CERTIFICATE_TYPE 246
  2426. #define SSL_R_UNKNOWN_CIPHER_RETURNED 247
  2427. #define SSL_R_UNKNOWN_CIPHER_TYPE 248
  2428. #define SSL_R_UNKNOWN_DIGEST 249
  2429. #define SSL_R_UNKNOWN_KEY_EXCHANGE_TYPE 250
  2430. #define SSL_R_UNKNOWN_PROTOCOL 251
  2431. #define SSL_R_UNKNOWN_SSL_VERSION 252
  2432. #define SSL_R_UNKNOWN_STATE 253
  2433. #define SSL_R_UNPROCESSED_HANDSHAKE_DATA 254
  2434. #define SSL_R_UNSAFE_LEGACY_RENEGOTIATION_DISABLED 255
  2435. #define SSL_R_UNSUPPORTED_CIPHER 256
  2436. #define SSL_R_UNSUPPORTED_COMPRESSION_ALGORITHM 257
  2437. #define SSL_R_UNSUPPORTED_ELLIPTIC_CURVE 258
  2438. #define SSL_R_UNSUPPORTED_PROTOCOL 259
  2439. #define SSL_R_UNSUPPORTED_SSL_VERSION 260
  2440. #define SSL_R_USE_SRTP_NOT_NEGOTIATED 261
  2441. #define SSL_R_WRONG_CERTIFICATE_TYPE 262
  2442. #define SSL_R_WRONG_CIPHER_RETURNED 263
  2443. #define SSL_R_WRONG_CURVE 264
  2444. #define SSL_R_WRONG_MESSAGE_TYPE 265
  2445. #define SSL_R_WRONG_SIGNATURE_TYPE 266
  2446. #define SSL_R_WRONG_SSL_VERSION 267
  2447. #define SSL_R_WRONG_VERSION_NUMBER 268
  2448. #define SSL_R_X509_LIB 269
  2449. #define SSL_R_X509_VERIFICATION_SETUP_PROBLEMS 270
  2450. #define SSL_R_FRAGMENT_MISMATCH 271
  2451. #define SSL_R_BUFFER_TOO_SMALL 272
  2452. #define SSL_R_OLD_SESSION_VERSION_NOT_RETURNED 273
  2453. #define SSL_R_SSLV3_ALERT_CLOSE_NOTIFY 1000
  2454. #define SSL_R_SSLV3_ALERT_UNEXPECTED_MESSAGE 1010
  2455. #define SSL_R_SSLV3_ALERT_BAD_RECORD_MAC 1020
  2456. #define SSL_R_TLSV1_ALERT_DECRYPTION_FAILED 1021
  2457. #define SSL_R_TLSV1_ALERT_RECORD_OVERFLOW 1022
  2458. #define SSL_R_SSLV3_ALERT_DECOMPRESSION_FAILURE 1030
  2459. #define SSL_R_SSLV3_ALERT_HANDSHAKE_FAILURE 1040
  2460. #define SSL_R_SSLV3_ALERT_NO_CERTIFICATE 1041
  2461. #define SSL_R_SSLV3_ALERT_BAD_CERTIFICATE 1042
  2462. #define SSL_R_SSLV3_ALERT_UNSUPPORTED_CERTIFICATE 1043
  2463. #define SSL_R_SSLV3_ALERT_CERTIFICATE_REVOKED 1044
  2464. #define SSL_R_SSLV3_ALERT_CERTIFICATE_EXPIRED 1045
  2465. #define SSL_R_SSLV3_ALERT_CERTIFICATE_UNKNOWN 1046
  2466. #define SSL_R_SSLV3_ALERT_ILLEGAL_PARAMETER 1047
  2467. #define SSL_R_TLSV1_ALERT_UNKNOWN_CA 1048
  2468. #define SSL_R_TLSV1_ALERT_ACCESS_DENIED 1049
  2469. #define SSL_R_TLSV1_ALERT_DECODE_ERROR 1050
  2470. #define SSL_R_TLSV1_ALERT_DECRYPT_ERROR 1051
  2471. #define SSL_R_TLSV1_ALERT_EXPORT_RESTRICTION 1060
  2472. #define SSL_R_TLSV1_ALERT_PROTOCOL_VERSION 1070
  2473. #define SSL_R_TLSV1_ALERT_INSUFFICIENT_SECURITY 1071
  2474. #define SSL_R_TLSV1_ALERT_INTERNAL_ERROR 1080
  2475. #define SSL_R_TLSV1_ALERT_INAPPROPRIATE_FALLBACK 1086
  2476. #define SSL_R_TLSV1_ALERT_USER_CANCELLED 1090
  2477. #define SSL_R_TLSV1_ALERT_NO_RENEGOTIATION 1100
  2478. #define SSL_R_TLSV1_UNSUPPORTED_EXTENSION 1110
  2479. #define SSL_R_TLSV1_CERTIFICATE_UNOBTAINABLE 1111
  2480. #define SSL_R_TLSV1_UNRECOGNIZED_NAME 1112
  2481. #define SSL_R_TLSV1_BAD_CERTIFICATE_STATUS_RESPONSE 1113
  2482. #define SSL_R_TLSV1_BAD_CERTIFICATE_HASH_VALUE 1114
  2483. #endif /* OPENSSL_HEADER_SSL_H */