25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 
 
 
 
 

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