ssl.h (326250B)
1 // Copyright 1995-2016 The OpenSSL Project Authors. All Rights Reserved. 2 // Copyright (c) 2002, Oracle and/or its affiliates. All rights reserved. 3 // Copyright 2005 Nokia. All rights reserved. 4 // 5 // Licensed under the Apache License, Version 2.0 (the "License"); 6 // you may not use this file except in compliance with the License. 7 // You may obtain a copy of the License at 8 // 9 // https://www.apache.org/licenses/LICENSE-2.0 10 // 11 // Unless required by applicable law or agreed to in writing, software 12 // distributed under the License is distributed on an "AS IS" BASIS, 13 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 // See the License for the specific language governing permissions and 15 // limitations under the License. 16 17 #ifndef OPENSSL_HEADER_SSL_H 18 #define OPENSSL_HEADER_SSL_H 19 20 #include <openssl/base.h> // IWYU pragma: export 21 22 #include <openssl/bio.h> 23 #include <openssl/buf.h> 24 #include <openssl/pem.h> 25 #include <openssl/span.h> 26 #include <openssl/ssl3.h> 27 #include <openssl/tls1.h> 28 #include <openssl/x509.h> 29 30 #if !defined(OPENSSL_WINDOWS) 31 #include <sys/time.h> 32 #endif 33 34 // Forward-declare struct timeval. On Windows, it is defined in winsock2.h and 35 // Windows headers define too many macros to be included in public headers. 36 // However, only a forward declaration is needed. 37 struct timeval; 38 39 #if defined(__cplusplus) 40 extern "C" { 41 #endif 42 43 44 // SSL implementation. 45 46 47 // SSL contexts. 48 // 49 // |SSL_CTX| objects manage shared state and configuration between multiple TLS 50 // or DTLS connections. Whether the connections are TLS or DTLS is selected by 51 // an |SSL_METHOD| on creation. 52 // 53 // |SSL_CTX| are reference-counted and may be shared by connections across 54 // multiple threads. Once shared, functions which change the |SSL_CTX|'s 55 // configuration may not be used. 56 57 // TLS_method is the |SSL_METHOD| used for TLS connections. 58 OPENSSL_EXPORT const SSL_METHOD *TLS_method(void); 59 60 // DTLS_method is the |SSL_METHOD| used for DTLS connections. 61 OPENSSL_EXPORT const SSL_METHOD *DTLS_method(void); 62 63 // TLS_with_buffers_method is like |TLS_method|, but avoids all use of 64 // crypto/x509. All client connections created with |TLS_with_buffers_method| 65 // will fail unless a certificate verifier is installed with 66 // |SSL_set_custom_verify| or |SSL_CTX_set_custom_verify|. 67 OPENSSL_EXPORT const SSL_METHOD *TLS_with_buffers_method(void); 68 69 // DTLS_with_buffers_method is like |DTLS_method|, but avoids all use of 70 // crypto/x509. 71 OPENSSL_EXPORT const SSL_METHOD *DTLS_with_buffers_method(void); 72 73 // SSL_CTX_new returns a newly-allocated |SSL_CTX| with default settings or NULL 74 // on error. 75 OPENSSL_EXPORT SSL_CTX *SSL_CTX_new(const SSL_METHOD *method); 76 77 // SSL_CTX_up_ref increments the reference count of |ctx|. It returns one. 78 OPENSSL_EXPORT int SSL_CTX_up_ref(SSL_CTX *ctx); 79 80 // SSL_CTX_free releases memory associated with |ctx|. 81 OPENSSL_EXPORT void SSL_CTX_free(SSL_CTX *ctx); 82 83 84 // SSL connections. 85 // 86 // An |SSL| object represents a single TLS or DTLS connection. Although the 87 // shared |SSL_CTX| is thread-safe, an |SSL| is not thread-safe and may only be 88 // used on one thread at a time. 89 90 // SSL_new returns a newly-allocated |SSL| using |ctx| or NULL on error. The new 91 // connection inherits settings from |ctx| at the time of creation. Settings may 92 // also be individually configured on the connection. 93 // 94 // On creation, an |SSL| is not configured to be either a client or server. Call 95 // |SSL_set_connect_state| or |SSL_set_accept_state| to set this. 96 OPENSSL_EXPORT SSL *SSL_new(SSL_CTX *ctx); 97 98 // SSL_free releases memory associated with |ssl|. 99 OPENSSL_EXPORT void SSL_free(SSL *ssl); 100 101 // SSL_get_SSL_CTX returns the |SSL_CTX| associated with |ssl|. If 102 // |SSL_set_SSL_CTX| is called, it returns the new |SSL_CTX|, not the initial 103 // one. 104 OPENSSL_EXPORT SSL_CTX *SSL_get_SSL_CTX(const SSL *ssl); 105 106 // SSL_set_connect_state configures |ssl| to be a client. 107 OPENSSL_EXPORT void SSL_set_connect_state(SSL *ssl); 108 109 // SSL_set_accept_state configures |ssl| to be a server. 110 OPENSSL_EXPORT void SSL_set_accept_state(SSL *ssl); 111 112 // SSL_is_server returns one if |ssl| is configured as a server and zero 113 // otherwise. 114 OPENSSL_EXPORT int SSL_is_server(const SSL *ssl); 115 116 // SSL_is_dtls returns one if |ssl| is a DTLS connection and zero otherwise. 117 OPENSSL_EXPORT int SSL_is_dtls(const SSL *ssl); 118 119 // SSL_is_quic returns one if |ssl| is a QUIC connection and zero otherwise. 120 OPENSSL_EXPORT int SSL_is_quic(const SSL *ssl); 121 122 // SSL_set_bio configures |ssl| to read from |rbio| and write to |wbio|. |ssl| 123 // takes ownership of the two |BIO|s. If |rbio| and |wbio| are the same, |ssl| 124 // only takes ownership of one reference. See |SSL_set0_rbio| and 125 // |SSL_set0_wbio| for requirements on |rbio| and |wbio|, respectively. 126 // 127 // If |rbio| is the same as the currently configured |BIO| for reading, that 128 // side is left untouched and is not freed. 129 // 130 // If |wbio| is the same as the currently configured |BIO| for writing AND |ssl| 131 // is not currently configured to read from and write to the same |BIO|, that 132 // side is left untouched and is not freed. This asymmetry is present for 133 // historical reasons. 134 // 135 // Due to the very complex historical behavior of this function, calling this 136 // function if |ssl| already has |BIO|s configured is deprecated. Prefer 137 // |SSL_set0_rbio| and |SSL_set0_wbio| instead. 138 OPENSSL_EXPORT void SSL_set_bio(SSL *ssl, BIO *rbio, BIO *wbio); 139 140 // SSL_set0_rbio configures |ssl| to read from |rbio|. It takes ownership of 141 // |rbio|. |rbio| may be a custom |BIO|, in which case it must implement 142 // |BIO_read| with |BIO_meth_set_read|. In DTLS, |rbio| must be non-blocking to 143 // properly handle timeouts and retransmits. 144 // 145 // Note that, although this function and |SSL_set0_wbio| may be called on the 146 // same |BIO|, each call takes a reference. Use |BIO_up_ref| to balance this. 147 OPENSSL_EXPORT void SSL_set0_rbio(SSL *ssl, BIO *rbio); 148 149 // SSL_set0_wbio configures |ssl| to write to |wbio|. It takes ownership of 150 // |wbio|. |wbio| may be a custom |BIO|, in which case it must implement 151 // |BIO_write| with |BIO_meth_set_write|. It must additionally implement 152 // |BIO_flush| with |BIO_meth_set_ctrl| and |BIO_CTRL_FLUSH|. If flushing is 153 // unnecessary with |wbio|, |BIO_flush| should return one and do nothing. 154 // 155 // Note that, although this function and |SSL_set0_rbio| may be called on the 156 // same |BIO|, each call takes a reference. Use |BIO_up_ref| to balance this. 157 OPENSSL_EXPORT void SSL_set0_wbio(SSL *ssl, BIO *wbio); 158 159 // SSL_get_rbio returns the |BIO| that |ssl| reads from. 160 OPENSSL_EXPORT BIO *SSL_get_rbio(const SSL *ssl); 161 162 // SSL_get_wbio returns the |BIO| that |ssl| writes to. 163 OPENSSL_EXPORT BIO *SSL_get_wbio(const SSL *ssl); 164 165 // SSL_get_fd calls |SSL_get_rfd|. 166 OPENSSL_EXPORT int SSL_get_fd(const SSL *ssl); 167 168 // SSL_get_rfd returns the file descriptor that |ssl| is configured to read 169 // from. If |ssl|'s read |BIO| is not configured or doesn't wrap a file 170 // descriptor then it returns -1. 171 // 172 // Note: On Windows, this may return either a file descriptor or a socket (cast 173 // to int), depending on whether |ssl| was configured with a file descriptor or 174 // socket |BIO|. 175 OPENSSL_EXPORT int SSL_get_rfd(const SSL *ssl); 176 177 // SSL_get_wfd returns the file descriptor that |ssl| is configured to write 178 // to. If |ssl|'s write |BIO| is not configured or doesn't wrap a file 179 // descriptor then it returns -1. 180 // 181 // Note: On Windows, this may return either a file descriptor or a socket (cast 182 // to int), depending on whether |ssl| was configured with a file descriptor or 183 // socket |BIO|. 184 OPENSSL_EXPORT int SSL_get_wfd(const SSL *ssl); 185 186 #if !defined(OPENSSL_NO_SOCK) 187 // SSL_set_fd configures |ssl| to read from and write to |fd|. It returns one 188 // on success and zero on allocation error. The caller retains ownership of 189 // |fd|. 190 // 191 // On Windows, |fd| is cast to a |SOCKET| and used with Winsock APIs. 192 OPENSSL_EXPORT int SSL_set_fd(SSL *ssl, int fd); 193 194 // SSL_set_rfd configures |ssl| to read from |fd|. It returns one on success and 195 // zero on allocation error. The caller retains ownership of |fd|. 196 // 197 // On Windows, |fd| is cast to a |SOCKET| and used with Winsock APIs. 198 OPENSSL_EXPORT int SSL_set_rfd(SSL *ssl, int fd); 199 200 // SSL_set_wfd configures |ssl| to write to |fd|. It returns one on success and 201 // zero on allocation error. The caller retains ownership of |fd|. 202 // 203 // On Windows, |fd| is cast to a |SOCKET| and used with Winsock APIs. 204 OPENSSL_EXPORT int SSL_set_wfd(SSL *ssl, int fd); 205 #endif // !OPENSSL_NO_SOCK 206 207 // SSL_do_handshake continues the current handshake. If there is none or the 208 // handshake has completed or False Started, it returns one. Otherwise, it 209 // returns <= 0. The caller should pass the value into |SSL_get_error| to 210 // determine how to proceed. 211 // 212 // In DTLS, the caller must drive retransmissions and timeouts. After calling 213 // this function, the caller must use |DTLSv1_get_timeout| to determine the 214 // current timeout, if any. If it expires before the application next calls into 215 // |ssl|, call |DTLSv1_handle_timeout|. Note that DTLS handshake retransmissions 216 // use fresh sequence numbers, so it is not sufficient to replay packets at the 217 // transport. 218 // 219 // After the DTLS handshake, some retransmissions may remain. If |ssl| wrote 220 // last in the handshake, it may need to retransmit the final flight in case of 221 // packet loss. Additionally, in DTLS 1.3, it may need to retransmit 222 // post-handshake messages. To handle these, the caller must always be prepared 223 // to receive packets and process them with |SSL_read|, even when the 224 // application protocol would otherwise not read from the connection. 225 // 226 // TODO(davidben): Ensure 0 is only returned on transport EOF. 227 // https://crbug.com/466303. 228 OPENSSL_EXPORT int SSL_do_handshake(SSL *ssl); 229 230 // SSL_connect configures |ssl| as a client, if unconfigured, and calls 231 // |SSL_do_handshake|. 232 OPENSSL_EXPORT int SSL_connect(SSL *ssl); 233 234 // SSL_accept configures |ssl| as a server, if unconfigured, and calls 235 // |SSL_do_handshake|. 236 OPENSSL_EXPORT int SSL_accept(SSL *ssl); 237 238 // SSL_read reads up to |num| bytes from |ssl| into |buf|. It implicitly runs 239 // any pending handshakes, including renegotiations when enabled. On success, it 240 // returns the number of bytes read. Otherwise, it returns <= 0. The caller 241 // should pass the value into |SSL_get_error| to determine how to proceed. 242 // 243 // In DTLS 1.3, the caller must also drive timeouts from retransmitting the 244 // final flight of the handshake, as well as post-handshake messages. After 245 // calling this function, the caller must use |DTLSv1_get_timeout| to determine 246 // the current timeout, if any. If it expires before the application next calls 247 // into |ssl|, call |DTLSv1_handle_timeout|. 248 // 249 // TODO(davidben): Ensure 0 is only returned on transport EOF. 250 // https://crbug.com/466303. 251 OPENSSL_EXPORT int SSL_read(SSL *ssl, void *buf, int num); 252 253 // SSL_peek behaves like |SSL_read| but does not consume any bytes returned. 254 OPENSSL_EXPORT int SSL_peek(SSL *ssl, void *buf, int num); 255 256 // SSL_pending returns the number of buffered, decrypted bytes available for 257 // read in |ssl|. It does not read from the transport. 258 // 259 // In DTLS, it is possible for this function to return zero while there is 260 // buffered, undecrypted data from the transport in |ssl|. For example, 261 // |SSL_read| may read a datagram with two records, decrypt the first, and leave 262 // the second buffered for a subsequent call to |SSL_read|. Callers that wish to 263 // detect this case can use |SSL_has_pending|. 264 OPENSSL_EXPORT int SSL_pending(const SSL *ssl); 265 266 // SSL_has_pending returns one if |ssl| has buffered, decrypted bytes available 267 // for read, or if |ssl| has buffered data from the transport that has not yet 268 // been decrypted. If |ssl| has neither, this function returns zero. 269 // 270 // In TLS, BoringSSL does not implement read-ahead, so this function returns one 271 // if and only if |SSL_pending| would return a non-zero value. In DTLS, it is 272 // possible for this function to return one while |SSL_pending| returns zero. 273 // For example, |SSL_read| may read a datagram with two records, decrypt the 274 // first, and leave the second buffered for a subsequent call to |SSL_read|. 275 // 276 // As a result, if this function returns one, the next call to |SSL_read| may 277 // still fail, read from the transport, or both. The buffered, undecrypted data 278 // may be invalid or incomplete. 279 OPENSSL_EXPORT int SSL_has_pending(const SSL *ssl); 280 281 // SSL_write writes up to |num| bytes from |buf| into |ssl|. It implicitly runs 282 // any pending handshakes, including renegotiations when enabled. On success, it 283 // returns the number of bytes written. Otherwise, it returns <= 0. The caller 284 // should pass the value into |SSL_get_error| to determine how to proceed. 285 // 286 // In TLS, a non-blocking |SSL_write| differs from non-blocking |write| in that 287 // a failed |SSL_write| still commits to the data passed in. When retrying, the 288 // caller must supply the original write buffer (or a larger one containing the 289 // original as a prefix). By default, retries will fail if they also do not 290 // reuse the same |buf| pointer. This may be relaxed with 291 // |SSL_MODE_ACCEPT_MOVING_WRITE_BUFFER|, but the buffer contents still must be 292 // unchanged. 293 // 294 // By default, in TLS, |SSL_write| will not return success until all |num| bytes 295 // are written. This may be relaxed with |SSL_MODE_ENABLE_PARTIAL_WRITE|. It 296 // allows |SSL_write| to complete with a partial result when only part of the 297 // input was written in a single record. 298 // 299 // In DTLS, neither |SSL_MODE_ACCEPT_MOVING_WRITE_BUFFER| and 300 // |SSL_MODE_ENABLE_PARTIAL_WRITE| do anything. The caller may retry with a 301 // different buffer freely. A single call to |SSL_write| only ever writes a 302 // single record in a single packet, so |num| must be at most 303 // |SSL3_RT_MAX_PLAIN_LENGTH|. 304 // 305 // TODO(davidben): Ensure 0 is only returned on transport EOF. 306 // https://crbug.com/466303. 307 OPENSSL_EXPORT int SSL_write(SSL *ssl, const void *buf, int num); 308 309 // SSL_KEY_UPDATE_REQUESTED indicates that the peer should reply to a KeyUpdate 310 // message with its own, thus updating traffic secrets for both directions on 311 // the connection. 312 #define SSL_KEY_UPDATE_REQUESTED 1 313 314 // SSL_KEY_UPDATE_NOT_REQUESTED indicates that the peer should not reply with 315 // it's own KeyUpdate message. 316 #define SSL_KEY_UPDATE_NOT_REQUESTED 0 317 318 // SSL_key_update queues a TLS 1.3 KeyUpdate message to be sent on |ssl| 319 // if one is not already queued. The |request_type| argument must one of the 320 // |SSL_KEY_UPDATE_*| values. This function requires that |ssl| have completed a 321 // TLS >= 1.3 handshake. It returns one on success or zero on error. 322 // 323 // Note that this function does not _send_ the message itself. The next call to 324 // |SSL_write| will cause the message to be sent. |SSL_write| may be called with 325 // a zero length to flush a KeyUpdate message when no application data is 326 // pending. 327 OPENSSL_EXPORT int SSL_key_update(SSL *ssl, int request_type); 328 329 // SSL_shutdown shuts down |ssl|. It runs in two stages. First, it sends 330 // close_notify and returns zero or one on success or -1 on failure. Zero 331 // indicates that close_notify was sent, but not received, and one additionally 332 // indicates that the peer's close_notify had already been received. 333 // 334 // To then wait for the peer's close_notify, run |SSL_shutdown| to completion a 335 // second time. This returns 1 on success and -1 on failure. Application data 336 // is considered a fatal error at this point. To process or discard it, read 337 // until close_notify with |SSL_read| instead. 338 // 339 // In both cases, on failure, pass the return value into |SSL_get_error| to 340 // determine how to proceed. 341 // 342 // Most callers should stop at the first stage. Reading for close_notify is 343 // primarily used for uncommon protocols where the underlying transport is 344 // reused after TLS completes. Additionally, DTLS uses an unordered transport 345 // and is unordered, so the second stage is a no-op in DTLS. 346 OPENSSL_EXPORT int SSL_shutdown(SSL *ssl); 347 348 // SSL_CTX_set_quiet_shutdown sets quiet shutdown on |ctx| to |mode|. If 349 // enabled, |SSL_shutdown| will not send a close_notify alert or wait for one 350 // from the peer. It will instead synchronously return one. 351 OPENSSL_EXPORT void SSL_CTX_set_quiet_shutdown(SSL_CTX *ctx, int mode); 352 353 // SSL_CTX_get_quiet_shutdown returns whether quiet shutdown is enabled for 354 // |ctx|. 355 OPENSSL_EXPORT int SSL_CTX_get_quiet_shutdown(const SSL_CTX *ctx); 356 357 // SSL_set_quiet_shutdown sets quiet shutdown on |ssl| to |mode|. If enabled, 358 // |SSL_shutdown| will not send a close_notify alert or wait for one from the 359 // peer. It will instead synchronously return one. 360 OPENSSL_EXPORT void SSL_set_quiet_shutdown(SSL *ssl, int mode); 361 362 // SSL_get_quiet_shutdown returns whether quiet shutdown is enabled for 363 // |ssl|. 364 OPENSSL_EXPORT int SSL_get_quiet_shutdown(const SSL *ssl); 365 366 // SSL_get_error returns a |SSL_ERROR_*| value for the most recent operation on 367 // |ssl|. It should be called after an operation failed to determine whether the 368 // error was fatal and, if not, when to retry. 369 OPENSSL_EXPORT int SSL_get_error(const SSL *ssl, int ret_code); 370 371 // SSL_ERROR_NONE indicates the operation succeeded. 372 #define SSL_ERROR_NONE 0 373 374 // SSL_ERROR_SSL indicates the operation failed within the library. The caller 375 // may inspect the error queue (see |ERR_get_error|) for more information. 376 #define SSL_ERROR_SSL 1 377 378 // SSL_ERROR_WANT_READ indicates the operation failed attempting to read from 379 // the transport. The caller may retry the operation when the transport is ready 380 // for reading. 381 #define SSL_ERROR_WANT_READ 2 382 383 // SSL_ERROR_WANT_WRITE indicates the operation failed attempting to write to 384 // the transport. The caller may retry the operation when the transport is ready 385 // for writing. 386 #define SSL_ERROR_WANT_WRITE 3 387 388 // SSL_ERROR_WANT_X509_LOOKUP indicates the operation failed in calling the 389 // |cert_cb| or |client_cert_cb|. The caller may retry the operation when the 390 // callback is ready to return a certificate or one has been configured 391 // externally. 392 // 393 // See also |SSL_CTX_set_cert_cb| and |SSL_CTX_set_client_cert_cb|. 394 #define SSL_ERROR_WANT_X509_LOOKUP 4 395 396 // SSL_ERROR_SYSCALL indicates the operation failed externally to the library. 397 // The caller should consult the system-specific error mechanism. This is 398 // typically |errno| but may be something custom if using a custom |BIO|. It 399 // may also be signaled if the transport returned EOF, in which case the 400 // operation's return value will be zero. 401 #define SSL_ERROR_SYSCALL 5 402 403 // SSL_ERROR_ZERO_RETURN indicates the operation failed because the connection 404 // was cleanly shut down with a close_notify alert. 405 #define SSL_ERROR_ZERO_RETURN 6 406 407 // SSL_ERROR_WANT_CONNECT indicates the operation failed attempting to connect 408 // the transport (the |BIO| signaled |BIO_RR_CONNECT|). The caller may retry the 409 // operation when the transport is ready. 410 #define SSL_ERROR_WANT_CONNECT 7 411 412 // SSL_ERROR_WANT_ACCEPT indicates the operation failed attempting to accept a 413 // connection from the transport (the |BIO| signaled |BIO_RR_ACCEPT|). The 414 // caller may retry the operation when the transport is ready. 415 // 416 // TODO(davidben): Remove this. It's used by accept BIOs which are bizarre. 417 #define SSL_ERROR_WANT_ACCEPT 8 418 419 // SSL_ERROR_WANT_CHANNEL_ID_LOOKUP is never used. 420 // 421 // TODO(davidben): Remove this. Some callers reference it when stringifying 422 // errors. They should use |SSL_error_description| instead. 423 #define SSL_ERROR_WANT_CHANNEL_ID_LOOKUP 9 424 425 // SSL_ERROR_PENDING_SESSION indicates the operation failed because the session 426 // lookup callback indicated the session was unavailable. The caller may retry 427 // the operation when lookup has completed. 428 // 429 // See also |SSL_CTX_sess_set_get_cb| and |SSL_magic_pending_session_ptr|. 430 #define SSL_ERROR_PENDING_SESSION 11 431 432 // SSL_ERROR_PENDING_CERTIFICATE indicates the operation failed because the 433 // early callback indicated certificate lookup was incomplete. The caller may 434 // retry the operation when lookup has completed. 435 // 436 // See also |SSL_CTX_set_select_certificate_cb|. 437 #define SSL_ERROR_PENDING_CERTIFICATE 12 438 439 // SSL_ERROR_WANT_PRIVATE_KEY_OPERATION indicates the operation failed because 440 // a private key operation was unfinished. The caller may retry the operation 441 // when the private key operation is complete. 442 // 443 // See also |SSL_set_private_key_method|, |SSL_CTX_set_private_key_method|, and 444 // |SSL_CREDENTIAL_set_private_key_method|. 445 #define SSL_ERROR_WANT_PRIVATE_KEY_OPERATION 13 446 447 // SSL_ERROR_PENDING_TICKET indicates that a ticket decryption is pending. The 448 // caller may retry the operation when the decryption is ready. 449 // 450 // See also |SSL_CTX_set_ticket_aead_method|. 451 #define SSL_ERROR_PENDING_TICKET 14 452 453 // SSL_ERROR_EARLY_DATA_REJECTED indicates that early data was rejected. The 454 // caller should treat this as a connection failure and retry any operations 455 // associated with the rejected early data. |SSL_reset_early_data_reject| may be 456 // used to reuse the underlying connection for the retry. 457 #define SSL_ERROR_EARLY_DATA_REJECTED 15 458 459 // SSL_ERROR_WANT_CERTIFICATE_VERIFY indicates the operation failed because 460 // certificate verification was incomplete. The caller may retry the operation 461 // when certificate verification is complete. 462 // 463 // See also |SSL_CTX_set_custom_verify|. 464 #define SSL_ERROR_WANT_CERTIFICATE_VERIFY 16 465 466 #define SSL_ERROR_HANDOFF 17 467 #define SSL_ERROR_HANDBACK 18 468 469 // SSL_ERROR_WANT_RENEGOTIATE indicates the operation is pending a response to 470 // a renegotiation request from the server. The caller may call 471 // |SSL_renegotiate| to schedule a renegotiation and retry the operation. 472 // 473 // See also |ssl_renegotiate_explicit|. 474 #define SSL_ERROR_WANT_RENEGOTIATE 19 475 476 // SSL_ERROR_HANDSHAKE_HINTS_READY indicates the handshake has progressed enough 477 // for |SSL_serialize_handshake_hints| to be called. See also 478 // |SSL_request_handshake_hints|. 479 #define SSL_ERROR_HANDSHAKE_HINTS_READY 20 480 481 // SSL_error_description returns a string representation of |err|, where |err| 482 // is one of the |SSL_ERROR_*| constants returned by |SSL_get_error|, or NULL 483 // if the value is unrecognized. 484 OPENSSL_EXPORT const char *SSL_error_description(int err); 485 486 // SSL_set_mtu sets the |ssl|'s MTU in DTLS to |mtu|. It returns one on success 487 // and zero on failure. 488 OPENSSL_EXPORT int SSL_set_mtu(SSL *ssl, unsigned mtu); 489 490 // DTLSv1_set_initial_timeout_duration sets the initial duration for a DTLS 491 // handshake timeout. 492 // 493 // This duration overrides the default of 400 milliseconds, which is 494 // recommendation of RFC 9147 for real-time protocols. 495 OPENSSL_EXPORT void DTLSv1_set_initial_timeout_duration(SSL *ssl, 496 uint32_t duration_ms); 497 498 // DTLSv1_get_timeout queries the running DTLS timers. If there are any in 499 // progress, it sets |*out| to the time remaining until the first timer expires 500 // and returns one. Otherwise, it returns zero. Timers may be scheduled both 501 // during and after the handshake. 502 // 503 // When the timeout expires, call |DTLSv1_handle_timeout| to handle the 504 // retransmit behavior. 505 // 506 // NOTE: This function must be queried again whenever the state machine changes, 507 // including when |DTLSv1_handle_timeout| is called. 508 OPENSSL_EXPORT int DTLSv1_get_timeout(const SSL *ssl, struct timeval *out); 509 510 // DTLSv1_handle_timeout is called when a DTLS timeout expires. If no timeout 511 // had expired, it returns 0. Otherwise, it handles the timeout and returns 1 on 512 // success or -1 on error. 513 // 514 // This function may write to the transport (e.g. to retransmit messages) or 515 // update |ssl|'s internal state and schedule an updated timer. 516 // 517 // The caller's external timer should be compatible with the one |ssl| queries 518 // within some fudge factor. Otherwise, the call will be a no-op, but 519 // |DTLSv1_get_timeout| will return an updated timeout. 520 // 521 // If the function returns -1, checking if |SSL_get_error| returns 522 // |SSL_ERROR_WANT_WRITE| may be used to determine if the retransmit failed due 523 // to a non-fatal error at the write |BIO|. In this case, when the |BIO| is 524 // writable, the operation may be retried by calling the original function, 525 // |SSL_do_handshake| or |SSL_read|. 526 // 527 // WARNING: This function breaks the usual return value convention. 528 // 529 // TODO(davidben): We can make this function entirely optional by just checking 530 // the timers in |SSL_do_handshake| or |SSL_read|. Then timers behave like any 531 // other retry condition: rerun the operation and the library will make what 532 // progress it can. 533 OPENSSL_EXPORT int DTLSv1_handle_timeout(SSL *ssl); 534 535 536 // Protocol versions. 537 538 #define DTLS1_VERSION_MAJOR 0xfe 539 #define SSL3_VERSION_MAJOR 0x03 540 541 #define SSL3_VERSION 0x0300 542 #define TLS1_VERSION 0x0301 543 #define TLS1_1_VERSION 0x0302 544 #define TLS1_2_VERSION 0x0303 545 #define TLS1_3_VERSION 0x0304 546 547 #define DTLS1_VERSION 0xfeff 548 #define DTLS1_2_VERSION 0xfefd 549 #define DTLS1_3_VERSION 0xfefc 550 551 // SSL_CTX_set_min_proto_version sets the minimum protocol version for |ctx| to 552 // |version|. If |version| is zero, the default minimum version is used. It 553 // returns one on success and zero if |version| is invalid. 554 OPENSSL_EXPORT int SSL_CTX_set_min_proto_version(SSL_CTX *ctx, 555 uint16_t version); 556 557 // SSL_CTX_set_max_proto_version sets the maximum protocol version for |ctx| to 558 // |version|. If |version| is zero, the default maximum version is used. It 559 // returns one on success and zero if |version| is invalid. 560 OPENSSL_EXPORT int SSL_CTX_set_max_proto_version(SSL_CTX *ctx, 561 uint16_t version); 562 563 // SSL_CTX_get_min_proto_version returns the minimum protocol version for |ctx| 564 OPENSSL_EXPORT uint16_t SSL_CTX_get_min_proto_version(const SSL_CTX *ctx); 565 566 // SSL_CTX_get_max_proto_version returns the maximum protocol version for |ctx| 567 OPENSSL_EXPORT uint16_t SSL_CTX_get_max_proto_version(const SSL_CTX *ctx); 568 569 // SSL_set_min_proto_version sets the minimum protocol version for |ssl| to 570 // |version|. If |version| is zero, the default minimum version is used. It 571 // returns one on success and zero if |version| is invalid. 572 OPENSSL_EXPORT int SSL_set_min_proto_version(SSL *ssl, uint16_t version); 573 574 // SSL_set_max_proto_version sets the maximum protocol version for |ssl| to 575 // |version|. If |version| is zero, the default maximum version is used. It 576 // returns one on success and zero if |version| is invalid. 577 OPENSSL_EXPORT int SSL_set_max_proto_version(SSL *ssl, uint16_t version); 578 579 // SSL_get_min_proto_version returns the minimum protocol version for |ssl|. If 580 // the connection's configuration has been shed, 0 is returned. 581 OPENSSL_EXPORT uint16_t SSL_get_min_proto_version(const SSL *ssl); 582 583 // SSL_get_max_proto_version returns the maximum protocol version for |ssl|. If 584 // the connection's configuration has been shed, 0 is returned. 585 OPENSSL_EXPORT uint16_t SSL_get_max_proto_version(const SSL *ssl); 586 587 // SSL_version returns the TLS or DTLS protocol version used by |ssl|, which is 588 // one of the |*_VERSION| values. (E.g. |TLS1_2_VERSION|.) Before the version 589 // is negotiated, the result is undefined. 590 OPENSSL_EXPORT int SSL_version(const SSL *ssl); 591 592 593 // Options. 594 // 595 // Options configure protocol behavior. 596 597 // SSL_OP_NO_QUERY_MTU, in DTLS, disables querying the MTU from the underlying 598 // |BIO|. Instead, the MTU is configured with |SSL_set_mtu|. 599 #define SSL_OP_NO_QUERY_MTU 0x00001000L 600 601 // SSL_OP_NO_TICKET disables session ticket support (RFC 5077). 602 #define SSL_OP_NO_TICKET 0x00004000L 603 604 // SSL_OP_CIPHER_SERVER_PREFERENCE configures servers to select ciphers and 605 // ECDHE curves according to the server's preferences instead of the 606 // client's. 607 #define SSL_OP_CIPHER_SERVER_PREFERENCE 0x00400000L 608 609 // The following flags toggle individual protocol versions. This is deprecated. 610 // Use |SSL_CTX_set_min_proto_version| and |SSL_CTX_set_max_proto_version| 611 // instead. 612 #define SSL_OP_NO_TLSv1 0x04000000L 613 #define SSL_OP_NO_TLSv1_2 0x08000000L 614 #define SSL_OP_NO_TLSv1_1 0x10000000L 615 #define SSL_OP_NO_TLSv1_3 0x20000000L 616 #define SSL_OP_NO_DTLSv1 SSL_OP_NO_TLSv1 617 #define SSL_OP_NO_DTLSv1_2 SSL_OP_NO_TLSv1_2 618 619 // SSL_CTX_set_options enables all options set in |options| (which should be one 620 // or more of the |SSL_OP_*| values, ORed together) in |ctx|. It returns a 621 // bitmask representing the resulting enabled options. 622 OPENSSL_EXPORT uint32_t SSL_CTX_set_options(SSL_CTX *ctx, uint32_t options); 623 624 // SSL_CTX_clear_options disables all options set in |options| (which should be 625 // one or more of the |SSL_OP_*| values, ORed together) in |ctx|. It returns a 626 // bitmask representing the resulting enabled options. 627 OPENSSL_EXPORT uint32_t SSL_CTX_clear_options(SSL_CTX *ctx, uint32_t options); 628 629 // SSL_CTX_get_options returns a bitmask of |SSL_OP_*| values that represent all 630 // the options enabled for |ctx|. 631 OPENSSL_EXPORT uint32_t SSL_CTX_get_options(const SSL_CTX *ctx); 632 633 // SSL_set_options enables all options set in |options| (which should be one or 634 // more of the |SSL_OP_*| values, ORed together) in |ssl|. It returns a bitmask 635 // representing the resulting enabled options. 636 OPENSSL_EXPORT uint32_t SSL_set_options(SSL *ssl, uint32_t options); 637 638 // SSL_clear_options disables all options set in |options| (which should be one 639 // or more of the |SSL_OP_*| values, ORed together) in |ssl|. It returns a 640 // bitmask representing the resulting enabled options. 641 OPENSSL_EXPORT uint32_t SSL_clear_options(SSL *ssl, uint32_t options); 642 643 // SSL_get_options returns a bitmask of |SSL_OP_*| values that represent all the 644 // options enabled for |ssl|. 645 OPENSSL_EXPORT uint32_t SSL_get_options(const SSL *ssl); 646 647 648 // Modes. 649 // 650 // Modes configure API behavior. 651 652 // SSL_MODE_ENABLE_PARTIAL_WRITE, in TLS, allows |SSL_write| to complete with a 653 // partial result when the only part of the input was written in a single 654 // record. In DTLS, it does nothing. 655 #define SSL_MODE_ENABLE_PARTIAL_WRITE 0x00000001L 656 657 // SSL_MODE_ACCEPT_MOVING_WRITE_BUFFER, in TLS, allows retrying an incomplete 658 // |SSL_write| with a different buffer. However, |SSL_write| still assumes the 659 // buffer contents are unchanged. This is not the default to avoid the 660 // misconception that non-blocking |SSL_write| behaves like non-blocking 661 // |write|. In DTLS, it does nothing. 662 #define SSL_MODE_ACCEPT_MOVING_WRITE_BUFFER 0x00000002L 663 664 // SSL_MODE_NO_AUTO_CHAIN disables automatically building a certificate chain 665 // before sending certificates to the peer. This flag is set (and the feature 666 // disabled) by default. 667 // TODO(davidben): Remove this behavior. https://crbug.com/boringssl/42. 668 #define SSL_MODE_NO_AUTO_CHAIN 0x00000008L 669 670 // SSL_MODE_ENABLE_FALSE_START allows clients to send application data before 671 // receipt of ChangeCipherSpec and Finished. This mode enables full handshakes 672 // to 'complete' in one RTT. See RFC 7918. 673 // 674 // When False Start is enabled, |SSL_do_handshake| may succeed before the 675 // handshake has completely finished. |SSL_write| will function at this point, 676 // and |SSL_read| will transparently wait for the final handshake leg before 677 // returning application data. To determine if False Start occurred or when the 678 // handshake is completely finished, see |SSL_in_false_start|, |SSL_in_init|, 679 // and |SSL_CB_HANDSHAKE_DONE| from |SSL_CTX_set_info_callback|. 680 #define SSL_MODE_ENABLE_FALSE_START 0x00000080L 681 682 // SSL_MODE_CBC_RECORD_SPLITTING causes multi-byte CBC records in TLS 1.0 to be 683 // split in two: the first record will contain a single byte and the second will 684 // contain the remainder. This effectively randomises the IV and prevents BEAST 685 // attacks. 686 #define SSL_MODE_CBC_RECORD_SPLITTING 0x00000100L 687 688 // SSL_MODE_NO_SESSION_CREATION will cause any attempts to create a session to 689 // fail with SSL_R_SESSION_MAY_NOT_BE_CREATED. This can be used to enforce that 690 // session resumption is used for a given SSL*. 691 #define SSL_MODE_NO_SESSION_CREATION 0x00000200L 692 693 // SSL_MODE_SEND_FALLBACK_SCSV sends TLS_FALLBACK_SCSV in the ClientHello. 694 // To be set only by applications that reconnect with a downgraded protocol 695 // version; see RFC 7507 for details. 696 // 697 // DO NOT ENABLE THIS if your application attempts a normal handshake. Only use 698 // this in explicit fallback retries, following the guidance in RFC 7507. 699 #define SSL_MODE_SEND_FALLBACK_SCSV 0x00000400L 700 701 // SSL_CTX_set_mode enables all modes set in |mode| (which should be one or more 702 // of the |SSL_MODE_*| values, ORed together) in |ctx|. It returns a bitmask 703 // representing the resulting enabled modes. 704 OPENSSL_EXPORT uint32_t SSL_CTX_set_mode(SSL_CTX *ctx, uint32_t mode); 705 706 // SSL_CTX_clear_mode disables all modes set in |mode| (which should be one or 707 // more of the |SSL_MODE_*| values, ORed together) in |ctx|. It returns a 708 // bitmask representing the resulting enabled modes. 709 OPENSSL_EXPORT uint32_t SSL_CTX_clear_mode(SSL_CTX *ctx, uint32_t mode); 710 711 // SSL_CTX_get_mode returns a bitmask of |SSL_MODE_*| values that represent all 712 // the modes enabled for |ssl|. 713 OPENSSL_EXPORT uint32_t SSL_CTX_get_mode(const SSL_CTX *ctx); 714 715 // SSL_set_mode enables all modes set in |mode| (which should be one or more of 716 // the |SSL_MODE_*| values, ORed together) in |ssl|. It returns a bitmask 717 // representing the resulting enabled modes. 718 OPENSSL_EXPORT uint32_t SSL_set_mode(SSL *ssl, uint32_t mode); 719 720 // SSL_clear_mode disables all modes set in |mode| (which should be one or more 721 // of the |SSL_MODE_*| values, ORed together) in |ssl|. It returns a bitmask 722 // representing the resulting enabled modes. 723 OPENSSL_EXPORT uint32_t SSL_clear_mode(SSL *ssl, uint32_t mode); 724 725 // SSL_get_mode returns a bitmask of |SSL_MODE_*| values that represent all the 726 // modes enabled for |ssl|. 727 OPENSSL_EXPORT uint32_t SSL_get_mode(const SSL *ssl); 728 729 // SSL_CTX_set0_buffer_pool sets a |CRYPTO_BUFFER_POOL| that will be used to 730 // store certificates. This can allow multiple connections to share 731 // certificates and thus save memory. 732 // 733 // The SSL_CTX does not take ownership of |pool| and the caller must ensure 734 // that |pool| outlives |ctx| and all objects linked to it, including |SSL|, 735 // |X509| and |SSL_SESSION| objects. Basically, don't ever free |pool|. 736 OPENSSL_EXPORT void SSL_CTX_set0_buffer_pool(SSL_CTX *ctx, 737 CRYPTO_BUFFER_POOL *pool); 738 739 740 // Credentials. 741 // 742 // TLS endpoints may present authentication during the handshake, usually using 743 // X.509 certificates. This is typically required for servers and optional for 744 // clients. BoringSSL uses the |SSL_CREDENTIAL| object to abstract between 745 // different kinds of credentials, as well as configure automatic selection 746 // between multiple credentials. This may be used to select between ECDSA and 747 // RSA certificates. 748 // 749 // |SSL_CTX| and |SSL| objects maintain lists of credentials in preference 750 // order. During the handshake, BoringSSL will select the first usable 751 // credential from the list. Non-credential APIs, such as 752 // |SSL_CTX_use_certificate|, configure a "legacy credential", which is 753 // appended to this list if configured. Using the legacy credential is the same 754 // as configuring an equivalent credential with the |SSL_CREDENTIAL| API. 755 // 756 // When selecting credentials, BoringSSL considers the credential's type, its 757 // cryptographic capabilities, and capabilities advertised by the peer. This 758 // varies between TLS versions but includes: 759 // 760 // - Whether the peer supports the leaf certificate key 761 // - Whether there is a common signature algorithm that is compatible with the 762 // credential 763 // - Whether there is a common cipher suite that is compatible with the 764 // credential 765 // 766 // WARNING: In TLS 1.2 and below, there is no mechanism for servers to advertise 767 // supported ECDSA curves to the client. BoringSSL clients will assume the 768 // server accepts all ECDSA curves in client certificates. 769 // 770 // By default, BoringSSL does not check the following, though we may add APIs 771 // in the future to enable them on a per-credential basis. 772 // 773 // - Whether the peer supports the signature algorithms in the certificate chain 774 // - Whether the a server certificate is compatible with the server_name 775 // extension (SNI) 776 // 777 // Credentials may be configured before the handshake or dynamically in the 778 // early callback (see |SSL_CTX_set_select_certificate_cb|) and certificate 779 // callback (see |SSL_CTX_set_cert_cb|). These callbacks allow applications to 780 // use BoringSSL's built-in selection logic in tandem with custom logic. For 781 // example, a callback could evaluate application-specific SNI rules to filter 782 // down to an ECDSA and RSA credential, then configure both for BoringSSL to 783 // select between the two. 784 785 // SSL_CREDENTIAL_new_x509 returns a new, empty X.509 credential, or NULL on 786 // error. Callers should release the result with |SSL_CREDENTIAL_free| when 787 // done. 788 // 789 // Callers should configure a certificate chain and private key on the 790 // credential, along with other properties, then add it with 791 // |SSL_CTX_add1_credential|. 792 OPENSSL_EXPORT SSL_CREDENTIAL *SSL_CREDENTIAL_new_x509(void); 793 794 // SSL_CREDENTIAL_up_ref increments the reference count of |cred|. 795 OPENSSL_EXPORT void SSL_CREDENTIAL_up_ref(SSL_CREDENTIAL *cred); 796 797 // SSL_CREDENTIAL_free decrements the reference count of |cred|. If it reaches 798 // zero, all data referenced by |cred| and |cred| itself are released. 799 OPENSSL_EXPORT void SSL_CREDENTIAL_free(SSL_CREDENTIAL *cred); 800 801 // SSL_CREDENTIAL_set1_private_key sets |cred|'s private key to |cred|. It 802 // returns one on success and zero on failure. 803 OPENSSL_EXPORT int SSL_CREDENTIAL_set1_private_key(SSL_CREDENTIAL *cred, 804 EVP_PKEY *key); 805 806 // SSL_CREDENTIAL_set1_signing_algorithm_prefs configures |cred| to use |prefs| 807 // as the preference list when signing with |cred|'s private key. It returns one 808 // on success and zero on error. |prefs| should not include the internal-only 809 // value |SSL_SIGN_RSA_PKCS1_MD5_SHA1|. 810 // 811 // It is an error to call this function with delegated credentials (see 812 // |SSL_CREDENTIAL_new_delegated|) because delegated credentials already 813 // constrain the key to a single algorithm. 814 OPENSSL_EXPORT int SSL_CREDENTIAL_set1_signing_algorithm_prefs( 815 SSL_CREDENTIAL *cred, const uint16_t *prefs, size_t num_prefs); 816 817 // SSL_CREDENTIAL_set1_cert_chain sets |cred|'s certificate chain, starting from 818 // the leaf, to |num_cert|s certificates from |certs|. It returns one on success 819 // and zero on error. 820 OPENSSL_EXPORT int SSL_CREDENTIAL_set1_cert_chain(SSL_CREDENTIAL *cred, 821 CRYPTO_BUFFER *const *certs, 822 size_t num_certs); 823 824 // SSL_CREDENTIAL_set1_ocsp_response sets |cred|'s stapled OCSP response to 825 // |ocsp|. It returns one on success and zero on error. 826 OPENSSL_EXPORT int SSL_CREDENTIAL_set1_ocsp_response(SSL_CREDENTIAL *cred, 827 CRYPTO_BUFFER *ocsp); 828 829 // SSL_CREDENTIAL_set1_certificate_properties parses 830 // |certificate_property_list| as a CertificatePropertyList (see Section 6 of 831 // draft-ietf-tls-trust-anchor-ids-00) and applies recognized properties to 832 // |cred|. It returns one on success and zero on error. It is an error if 833 // |certificate_property_list| does not parse correctly, or if any recognized 834 // properties from |certificate_property_list| cannot be applied to |cred|. 835 // 836 // CertificatePropertyList is an extensible structure which allows serving 837 // properties of a certificate chain to be passed from a CA, through an 838 // application's issuance and configuration pipeline, and to the TLS serving 839 // logic, without requiring application changes for each property defined. 840 // 841 // BoringSSL currently supports the following properties: 842 // * trust_anchor_identifier (see |SSL_CREDENTIAL_set1_trust_anchor_id|) 843 // 844 // Note this function does not automatically enable issuer matching. Callers 845 // must separately call |SSL_CREDENTIAL_set_must_match_issuer| if desired. 846 OPENSSL_EXPORT int SSL_CREDENTIAL_set1_certificate_properties( 847 SSL_CREDENTIAL *cred, CRYPTO_BUFFER *cert_property_list); 848 849 // SSL_CREDENTIAL_set1_signed_cert_timestamp_list sets |cred|'s list of signed 850 // certificate timestamps |sct_list|. |sct_list| must contain one or more SCT 851 // structures serialised as a SignedCertificateTimestampList (see 852 // https://tools.ietf.org/html/rfc6962#section-3.3) – i.e. each SCT is prefixed 853 // by a big-endian, uint16 length and the concatenation of one or more such 854 // prefixed SCTs are themselves also prefixed by a uint16 length. It returns one 855 // on success and zero on error. 856 OPENSSL_EXPORT int SSL_CREDENTIAL_set1_signed_cert_timestamp_list( 857 SSL_CREDENTIAL *cred, CRYPTO_BUFFER *sct_list); 858 859 // SSL_CREDENTIAL_set_must_match_issuer configures whether |cred| should check 860 // if the peer supports the certificate chain's issuer. 861 // 862 // If |match| is non-zero, |cred| will only be applicable when the certificate 863 // chain is issued by some CA requested by the peer in the 864 // certificate_authorities extension or, if |cred| has a trust anchor ID (see 865 // |SSL_CREDENTIAL_set1_trust_anchor_id|), the trust_anchors extension. |cred|'s 866 // certificate chain must then be a correctly ordered certification path. 867 // 868 // If |match| is zero (default), |cred| will not be conditioned on the peer's 869 // requested CAs. This can be used for certificate chains that are assumed to be 870 // usable by most peers. 871 // 872 // This setting can be used for certificate chains that may not be usable by all 873 // peers, e.g. chains with fewer cross-signs or issued from a newer CA. The 874 // credential list is tried in order, so more specific credentials that enable 875 // issuer matching should generally be ordered before less specific credentials 876 // that do not. 877 OPENSSL_EXPORT void SSL_CREDENTIAL_set_must_match_issuer(SSL_CREDENTIAL *cred, 878 int match); 879 880 // SSL_CTX_add1_credential appends |cred| to |ctx|'s credential list. It returns 881 // one on success and zero on error. The credential list is maintained in order 882 // of decreasing preference, so earlier calls are preferred over later calls. 883 // 884 // After calling this function, it is an error to modify |cred|. Doing so may 885 // result in inconsistent handshake behavior or race conditions. 886 OPENSSL_EXPORT int SSL_CTX_add1_credential(SSL_CTX *ctx, SSL_CREDENTIAL *cred); 887 888 // SSL_add1_credential appends |cred| to |ssl|'s credential list. It returns one 889 // on success and zero on error. The credential list is maintained in order of 890 // decreasing preference, so earlier calls are preferred over later calls. 891 // 892 // After calling this function, it is an error to modify |cred|. Doing so may 893 // result in inconsistent handshake behavior or race conditions. 894 OPENSSL_EXPORT int SSL_add1_credential(SSL *ssl, SSL_CREDENTIAL *cred); 895 896 // SSL_certs_clear removes all credentials configured on |ssl|. It also removes 897 // the certificate chain and private key on the legacy credential. 898 OPENSSL_EXPORT void SSL_certs_clear(SSL *ssl); 899 900 // SSL_get0_selected_credential returns the credential in use in the current 901 // handshake on |ssl|. If there is current handshake on |ssl| or if the 902 // handshake has not progressed to this point, it returns NULL. 903 // 904 // This function is intended for use with |SSL_CREDENTIAL_get_ex_data|. It may 905 // be called from handshake callbacks, such as those in 906 // |SSL_PRIVATE_KEY_METHOD|, to trigger credential-specific behavior. 907 // 908 // In applications that use the older APIs, such as |SSL_use_certificate|, this 909 // function may return an internal |SSL_CREDENTIAL| object. This internal object 910 // will have no ex_data installed. To avoid this, it is recommended that callers 911 // moving to |SSL_CREDENTIAL| use the new APIs consistently. 912 OPENSSL_EXPORT const SSL_CREDENTIAL *SSL_get0_selected_credential( 913 const SSL *ssl); 914 915 916 // Configuring certificates and private keys. 917 // 918 // These functions configure the connection's leaf certificate, private key, and 919 // certificate chain. The certificate chain is ordered leaf to root (as sent on 920 // the wire) but does not include the leaf. Both client and server certificates 921 // use these functions. 922 // 923 // Prefer to configure the certificate before the private key. If configured in 924 // the other order, inconsistent private keys will be silently dropped, rather 925 // than return an error. Additionally, overwriting a previously-configured 926 // certificate and key pair only works if the certificate is configured first. 927 // 928 // Each of these functions configures the single "legacy credential" on the 929 // |SSL_CTX| or |SSL|. To select between multiple certificates, use 930 // |SSL_CREDENTIAL_new_x509| and other APIs to configure a list of credentials. 931 932 // SSL_CTX_use_certificate sets |ctx|'s leaf certificate to |x509|. It returns 933 // one on success and zero on failure. If |ctx| has a private key which is 934 // inconsistent with |x509|, the private key is silently dropped. 935 OPENSSL_EXPORT int SSL_CTX_use_certificate(SSL_CTX *ctx, X509 *x509); 936 937 // SSL_use_certificate sets |ssl|'s leaf certificate to |x509|. It returns one 938 // on success and zero on failure. If |ssl| has a private key which is 939 // inconsistent with |x509|, the private key is silently dropped. 940 OPENSSL_EXPORT int SSL_use_certificate(SSL *ssl, X509 *x509); 941 942 // SSL_CTX_use_PrivateKey sets |ctx|'s private key to |pkey|. It returns one on 943 // success and zero on failure. If |ctx| had a private key or 944 // |SSL_PRIVATE_KEY_METHOD| previously configured, it is replaced. 945 OPENSSL_EXPORT int SSL_CTX_use_PrivateKey(SSL_CTX *ctx, EVP_PKEY *pkey); 946 947 // SSL_use_PrivateKey sets |ssl|'s private key to |pkey|. It returns one on 948 // success and zero on failure. If |ssl| had a private key or 949 // |SSL_PRIVATE_KEY_METHOD| previously configured, it is replaced. 950 OPENSSL_EXPORT int SSL_use_PrivateKey(SSL *ssl, EVP_PKEY *pkey); 951 952 // SSL_CTX_set0_chain sets |ctx|'s certificate chain, excluding the leaf, to 953 // |chain|. On success, it returns one and takes ownership of |chain|. 954 // Otherwise, it returns zero. 955 OPENSSL_EXPORT int SSL_CTX_set0_chain(SSL_CTX *ctx, STACK_OF(X509) *chain); 956 957 // SSL_CTX_set1_chain sets |ctx|'s certificate chain, excluding the leaf, to 958 // |chain|. It returns one on success and zero on failure. The caller retains 959 // ownership of |chain| and may release it freely. 960 OPENSSL_EXPORT int SSL_CTX_set1_chain(SSL_CTX *ctx, STACK_OF(X509) *chain); 961 962 // SSL_set0_chain sets |ssl|'s certificate chain, excluding the leaf, to 963 // |chain|. On success, it returns one and takes ownership of |chain|. 964 // Otherwise, it returns zero. 965 OPENSSL_EXPORT int SSL_set0_chain(SSL *ssl, STACK_OF(X509) *chain); 966 967 // SSL_set1_chain sets |ssl|'s certificate chain, excluding the leaf, to 968 // |chain|. It returns one on success and zero on failure. The caller retains 969 // ownership of |chain| and may release it freely. 970 OPENSSL_EXPORT int SSL_set1_chain(SSL *ssl, STACK_OF(X509) *chain); 971 972 // SSL_CTX_add0_chain_cert appends |x509| to |ctx|'s certificate chain. On 973 // success, it returns one and takes ownership of |x509|. Otherwise, it returns 974 // zero. 975 OPENSSL_EXPORT int SSL_CTX_add0_chain_cert(SSL_CTX *ctx, X509 *x509); 976 977 // SSL_CTX_add1_chain_cert appends |x509| to |ctx|'s certificate chain. It 978 // returns one on success and zero on failure. The caller retains ownership of 979 // |x509| and may release it freely. 980 OPENSSL_EXPORT int SSL_CTX_add1_chain_cert(SSL_CTX *ctx, X509 *x509); 981 982 // SSL_add0_chain_cert appends |x509| to |ctx|'s certificate chain. On success, 983 // it returns one and takes ownership of |x509|. Otherwise, it returns zero. 984 OPENSSL_EXPORT int SSL_add0_chain_cert(SSL *ssl, X509 *x509); 985 986 // SSL_CTX_add_extra_chain_cert calls |SSL_CTX_add0_chain_cert|. 987 OPENSSL_EXPORT int SSL_CTX_add_extra_chain_cert(SSL_CTX *ctx, X509 *x509); 988 989 // SSL_add1_chain_cert appends |x509| to |ctx|'s certificate chain. It returns 990 // one on success and zero on failure. The caller retains ownership of |x509| 991 // and may release it freely. 992 OPENSSL_EXPORT int SSL_add1_chain_cert(SSL *ssl, X509 *x509); 993 994 // SSL_CTX_clear_chain_certs clears |ctx|'s certificate chain and returns 995 // one. 996 OPENSSL_EXPORT int SSL_CTX_clear_chain_certs(SSL_CTX *ctx); 997 998 // SSL_CTX_clear_extra_chain_certs calls |SSL_CTX_clear_chain_certs|. 999 OPENSSL_EXPORT int SSL_CTX_clear_extra_chain_certs(SSL_CTX *ctx); 1000 1001 // SSL_clear_chain_certs clears |ssl|'s certificate chain and returns one. 1002 OPENSSL_EXPORT int SSL_clear_chain_certs(SSL *ssl); 1003 1004 // SSL_CTX_set_cert_cb sets a callback that is called to select a certificate. 1005 // The callback returns one on success, zero on internal error, and a negative 1006 // number on failure or to pause the handshake. If the handshake is paused, 1007 // |SSL_get_error| will return |SSL_ERROR_WANT_X509_LOOKUP|. 1008 // 1009 // On the client, the callback may call |SSL_get0_certificate_types| and 1010 // |SSL_get_client_CA_list| for information on the server's certificate 1011 // request. 1012 // 1013 // On the server, the callback will be called after extensions have been 1014 // processed, but before the resumption decision has been made. This differs 1015 // from OpenSSL which handles resumption before selecting the certificate. 1016 OPENSSL_EXPORT void SSL_CTX_set_cert_cb(SSL_CTX *ctx, 1017 int (*cb)(SSL *ssl, void *arg), 1018 void *arg); 1019 1020 // SSL_set_cert_cb sets a callback that is called to select a certificate. The 1021 // callback returns one on success, zero on internal error, and a negative 1022 // number on failure or to pause the handshake. If the handshake is paused, 1023 // |SSL_get_error| will return |SSL_ERROR_WANT_X509_LOOKUP|. 1024 // 1025 // On the client, the callback may call |SSL_get0_certificate_types| and 1026 // |SSL_get_client_CA_list| for information on the server's certificate 1027 // request. 1028 // 1029 // On the server, the callback will be called after extensions have been 1030 // processed, but before the resumption decision has been made. This differs 1031 // from OpenSSL which handles resumption before selecting the certificate. 1032 OPENSSL_EXPORT void SSL_set_cert_cb(SSL *ssl, int (*cb)(SSL *ssl, void *arg), 1033 void *arg); 1034 1035 // SSL_get0_certificate_types, for a client, sets |*out_types| to an array 1036 // containing the client certificate types requested by a server. It returns the 1037 // length of the array. Note this list is always empty in TLS 1.3. The server 1038 // will instead send signature algorithms. See 1039 // |SSL_get0_peer_verify_algorithms|. 1040 // 1041 // The behavior of this function is undefined except during the callbacks set by 1042 // by |SSL_CTX_set_cert_cb| and |SSL_CTX_set_client_cert_cb| or when the 1043 // handshake is paused because of them. 1044 OPENSSL_EXPORT size_t SSL_get0_certificate_types(const SSL *ssl, 1045 const uint8_t **out_types); 1046 1047 // SSL_get0_peer_verify_algorithms sets |*out_sigalgs| to an array containing 1048 // the signature algorithms the peer is able to verify. It returns the length of 1049 // the array. Note these values are only sent starting TLS 1.2 and only 1050 // mandatory starting TLS 1.3. If not sent, the empty array is returned. For the 1051 // historical client certificate types list, see |SSL_get0_certificate_types|. 1052 // 1053 // The behavior of this function is undefined except during the callbacks set by 1054 // by |SSL_CTX_set_cert_cb| and |SSL_CTX_set_client_cert_cb| or when the 1055 // handshake is paused because of them. 1056 OPENSSL_EXPORT size_t 1057 SSL_get0_peer_verify_algorithms(const SSL *ssl, const uint16_t **out_sigalgs); 1058 1059 // SSL_get0_peer_delegation_algorithms sets |*out_sigalgs| to an array 1060 // containing the signature algorithms the peer is willing to use with delegated 1061 // credentials. It returns the length of the array. If not sent, the empty 1062 // array is returned. 1063 // 1064 // The behavior of this function is undefined except during the callbacks set by 1065 // by |SSL_CTX_set_cert_cb| and |SSL_CTX_set_client_cert_cb| or when the 1066 // handshake is paused because of them. 1067 OPENSSL_EXPORT size_t SSL_get0_peer_delegation_algorithms( 1068 const SSL *ssl, const uint16_t **out_sigalgs); 1069 1070 // SSL_CTX_get0_certificate returns |ctx|'s leaf certificate. 1071 OPENSSL_EXPORT X509 *SSL_CTX_get0_certificate(const SSL_CTX *ctx); 1072 1073 // SSL_get_certificate returns |ssl|'s leaf certificate. 1074 OPENSSL_EXPORT X509 *SSL_get_certificate(const SSL *ssl); 1075 1076 // SSL_CTX_get0_privatekey returns |ctx|'s private key. 1077 OPENSSL_EXPORT EVP_PKEY *SSL_CTX_get0_privatekey(const SSL_CTX *ctx); 1078 1079 // SSL_get_privatekey returns |ssl|'s private key. 1080 OPENSSL_EXPORT EVP_PKEY *SSL_get_privatekey(const SSL *ssl); 1081 1082 // SSL_CTX_get0_chain_certs sets |*out_chain| to |ctx|'s certificate chain and 1083 // returns one. 1084 OPENSSL_EXPORT int SSL_CTX_get0_chain_certs(const SSL_CTX *ctx, 1085 STACK_OF(X509) **out_chain); 1086 1087 // SSL_CTX_get_extra_chain_certs calls |SSL_CTX_get0_chain_certs|. 1088 OPENSSL_EXPORT int SSL_CTX_get_extra_chain_certs(const SSL_CTX *ctx, 1089 STACK_OF(X509) **out_chain); 1090 1091 // SSL_get0_chain_certs sets |*out_chain| to |ssl|'s certificate chain and 1092 // returns one. 1093 OPENSSL_EXPORT int SSL_get0_chain_certs(const SSL *ssl, 1094 STACK_OF(X509) **out_chain); 1095 1096 // SSL_CTX_set_signed_cert_timestamp_list sets the list of signed certificate 1097 // timestamps that is sent to clients that request it. The |list| argument must 1098 // contain one or more SCT structures serialised as a SignedCertificateTimestamp 1099 // List (see https://tools.ietf.org/html/rfc6962#section-3.3) – i.e. each SCT 1100 // is prefixed by a big-endian, uint16 length and the concatenation of one or 1101 // more such prefixed SCTs are themselves also prefixed by a uint16 length. It 1102 // returns one on success and zero on error. The caller retains ownership of 1103 // |list|. 1104 OPENSSL_EXPORT int SSL_CTX_set_signed_cert_timestamp_list(SSL_CTX *ctx, 1105 const uint8_t *list, 1106 size_t list_len); 1107 1108 // SSL_set_signed_cert_timestamp_list sets the list of signed certificate 1109 // timestamps that is sent to clients that request is. The same format as the 1110 // one used for |SSL_CTX_set_signed_cert_timestamp_list| applies. The caller 1111 // retains ownership of |list|. 1112 OPENSSL_EXPORT int SSL_set_signed_cert_timestamp_list(SSL *ctx, 1113 const uint8_t *list, 1114 size_t list_len); 1115 1116 // SSL_CTX_set_ocsp_response sets the OCSP response that is sent to clients 1117 // which request it. It returns one on success and zero on error. The caller 1118 // retains ownership of |response|. 1119 OPENSSL_EXPORT int SSL_CTX_set_ocsp_response(SSL_CTX *ctx, 1120 const uint8_t *response, 1121 size_t response_len); 1122 1123 // SSL_set_ocsp_response sets the OCSP response that is sent to clients which 1124 // request it. It returns one on success and zero on error. The caller retains 1125 // ownership of |response|. 1126 OPENSSL_EXPORT int SSL_set_ocsp_response(SSL *ssl, const uint8_t *response, 1127 size_t response_len); 1128 1129 // SSL_SIGN_* are signature algorithm values as defined in TLS 1.3. 1130 #define SSL_SIGN_RSA_PKCS1_SHA1 0x0201 1131 #define SSL_SIGN_RSA_PKCS1_SHA256 0x0401 1132 #define SSL_SIGN_RSA_PKCS1_SHA384 0x0501 1133 #define SSL_SIGN_RSA_PKCS1_SHA512 0x0601 1134 #define SSL_SIGN_ECDSA_SHA1 0x0203 1135 #define SSL_SIGN_ECDSA_SECP256R1_SHA256 0x0403 1136 #define SSL_SIGN_ECDSA_SECP384R1_SHA384 0x0503 1137 #define SSL_SIGN_ECDSA_SECP521R1_SHA512 0x0603 1138 #define SSL_SIGN_RSA_PSS_RSAE_SHA256 0x0804 1139 #define SSL_SIGN_RSA_PSS_RSAE_SHA384 0x0805 1140 #define SSL_SIGN_RSA_PSS_RSAE_SHA512 0x0806 1141 #define SSL_SIGN_ED25519 0x0807 1142 1143 // SSL_SIGN_RSA_PKCS1_SHA256_LEGACY is a backport of RSASSA-PKCS1-v1_5 with 1144 // SHA-256 to TLS 1.3. It is disabled by default and only defined for client 1145 // certificates. 1146 #define SSL_SIGN_RSA_PKCS1_SHA256_LEGACY 0x0420 1147 1148 // SSL_SIGN_RSA_PKCS1_MD5_SHA1 is an internal signature algorithm used to 1149 // specify raw RSASSA-PKCS1-v1_5 with an MD5/SHA-1 concatenation, as used in TLS 1150 // before TLS 1.2. 1151 #define SSL_SIGN_RSA_PKCS1_MD5_SHA1 0xff01 1152 1153 // SSL_get_signature_algorithm_name returns a human-readable name for |sigalg|, 1154 // or NULL if unknown. If |include_curve| is one, the curve for ECDSA algorithms 1155 // is included as in TLS 1.3. Otherwise, it is excluded as in TLS 1.2. 1156 OPENSSL_EXPORT const char *SSL_get_signature_algorithm_name(uint16_t sigalg, 1157 int include_curve); 1158 1159 // SSL_get_all_signature_algorithm_names outputs a list of possible strings 1160 // |SSL_get_signature_algorithm_name| may return in this version of BoringSSL. 1161 // It writes at most |max_out| entries to |out| and returns the total number it 1162 // would have written, if |max_out| had been large enough. |max_out| may be 1163 // initially set to zero to size the output. 1164 // 1165 // This function is only intended to help initialize tables in callers that want 1166 // possible strings pre-declared. This list would not be suitable to set a list 1167 // of supported features. It is in no particular order, and may contain 1168 // placeholder, experimental, or deprecated values that do not apply to every 1169 // caller. Future versions of BoringSSL may also return strings not in this 1170 // list, so this does not apply if, say, sending strings across services. 1171 OPENSSL_EXPORT size_t SSL_get_all_signature_algorithm_names(const char **out, 1172 size_t max_out); 1173 1174 // SSL_get_signature_algorithm_key_type returns the key type associated with 1175 // |sigalg| as an |EVP_PKEY_*| constant or |EVP_PKEY_NONE| if unknown. 1176 OPENSSL_EXPORT int SSL_get_signature_algorithm_key_type(uint16_t sigalg); 1177 1178 // SSL_get_signature_algorithm_digest returns the digest function associated 1179 // with |sigalg| or |NULL| if |sigalg| has no prehash (Ed25519) or is unknown. 1180 OPENSSL_EXPORT const EVP_MD *SSL_get_signature_algorithm_digest( 1181 uint16_t sigalg); 1182 1183 // SSL_is_signature_algorithm_rsa_pss returns one if |sigalg| is an RSA-PSS 1184 // signature algorithm and zero otherwise. 1185 OPENSSL_EXPORT int SSL_is_signature_algorithm_rsa_pss(uint16_t sigalg); 1186 1187 // SSL_CTX_set_signing_algorithm_prefs configures |ctx| to use |prefs| as the 1188 // preference list when signing with |ctx|'s private key in TLS 1.2 and up. It 1189 // returns one on success and zero on error. |prefs| should not include the 1190 // internal-only TLS 1.0 value |SSL_SIGN_RSA_PKCS1_MD5_SHA1|. 1191 // 1192 // This setting is not used in TLS 1.0 and 1.1. Those protocols always sign a 1193 // hardcoded algorithm (an MD5/SHA-1 concatenation for RSA, and SHA-1 for 1194 // ECDSA). BoringSSL will use those algorithms if and only if those versions are 1195 // used. To disable them, set the minimum version to TLS 1.2 (default) or 1196 // higher. 1197 OPENSSL_EXPORT int SSL_CTX_set_signing_algorithm_prefs(SSL_CTX *ctx, 1198 const uint16_t *prefs, 1199 size_t num_prefs); 1200 1201 // SSL_set_signing_algorithm_prefs configures |ssl| to use |prefs| as the 1202 // preference list when signing with |ssl|'s private key in TLS 1.2 and up. It 1203 // returns one on success and zero on error. |prefs| should not include the 1204 // internal-only TLS 1.0 value |SSL_SIGN_RSA_PKCS1_MD5_SHA1|. 1205 // 1206 // This setting is not used in TLS 1.0 and 1.1. Those protocols always sign a 1207 // hardcoded algorithm (an MD5/SHA-1 concatenation for RSA, and SHA-1 for 1208 // ECDSA). BoringSSL will use those algorithms if and only if those versions are 1209 // used. To disable them, set the minimum version to TLS 1.2 (default) or 1210 // higher. 1211 OPENSSL_EXPORT int SSL_set_signing_algorithm_prefs(SSL *ssl, 1212 const uint16_t *prefs, 1213 size_t num_prefs); 1214 1215 1216 // Certificate and private key convenience functions. 1217 1218 // SSL_CTX_set_chain_and_key sets the certificate chain and private key for a 1219 // TLS client or server. References to the given |CRYPTO_BUFFER| and |EVP_PKEY| 1220 // objects are added as needed. Exactly one of |privkey| or |privkey_method| 1221 // may be non-NULL. Returns one on success and zero on error. 1222 OPENSSL_EXPORT int SSL_CTX_set_chain_and_key( 1223 SSL_CTX *ctx, CRYPTO_BUFFER *const *certs, size_t num_certs, 1224 EVP_PKEY *privkey, const SSL_PRIVATE_KEY_METHOD *privkey_method); 1225 1226 // SSL_set_chain_and_key sets the certificate chain and private key for a TLS 1227 // client or server. References to the given |CRYPTO_BUFFER| and |EVP_PKEY| 1228 // objects are added as needed. Exactly one of |privkey| or |privkey_method| 1229 // may be non-NULL. Returns one on success and zero on error. 1230 OPENSSL_EXPORT int SSL_set_chain_and_key( 1231 SSL *ssl, CRYPTO_BUFFER *const *certs, size_t num_certs, EVP_PKEY *privkey, 1232 const SSL_PRIVATE_KEY_METHOD *privkey_method); 1233 1234 // SSL_CTX_get0_chain returns the list of |CRYPTO_BUFFER|s that were set by 1235 // |SSL_CTX_set_chain_and_key|. Reference counts are not incremented by this 1236 // call. The return value may be |NULL| if no chain has been set. 1237 // 1238 // (Note: if a chain was configured by non-|CRYPTO_BUFFER|-based functions then 1239 // the return value is undefined and, even if not NULL, the stack itself may 1240 // contain nullptrs. Thus you shouldn't mix this function with 1241 // non-|CRYPTO_BUFFER| functions for manipulating the chain.) 1242 OPENSSL_EXPORT const STACK_OF(CRYPTO_BUFFER) *SSL_CTX_get0_chain( 1243 const SSL_CTX *ctx); 1244 1245 // SSL_get0_chain returns the list of |CRYPTO_BUFFER|s that were set by 1246 // |SSL_set_chain_and_key|, unless they have been discarded. Reference counts 1247 // are not incremented by this call. The return value may be |NULL| if no chain 1248 // has been set. 1249 // 1250 // (Note: if a chain was configured by non-|CRYPTO_BUFFER|-based functions then 1251 // the return value is undefined and, even if not NULL, the stack itself may 1252 // contain nullptrs. Thus you shouldn't mix this function with 1253 // non-|CRYPTO_BUFFER| functions for manipulating the chain.) 1254 // 1255 // This function may return nullptr if a handshake has completed even if 1256 // |SSL_set_chain_and_key| was previously called, since the configuration 1257 // containing the certificates is typically cleared after handshake completion. 1258 OPENSSL_EXPORT const STACK_OF(CRYPTO_BUFFER) *SSL_get0_chain(const SSL *ssl); 1259 1260 // SSL_CTX_use_RSAPrivateKey sets |ctx|'s private key to |rsa|. It returns one 1261 // on success and zero on failure. 1262 OPENSSL_EXPORT int SSL_CTX_use_RSAPrivateKey(SSL_CTX *ctx, RSA *rsa); 1263 1264 // SSL_use_RSAPrivateKey sets |ctx|'s private key to |rsa|. It returns one on 1265 // success and zero on failure. 1266 OPENSSL_EXPORT int SSL_use_RSAPrivateKey(SSL *ssl, RSA *rsa); 1267 1268 // The following functions configure certificates or private keys but take as 1269 // input DER-encoded structures. They return one on success and zero on 1270 // failure. 1271 1272 OPENSSL_EXPORT int SSL_CTX_use_certificate_ASN1(SSL_CTX *ctx, size_t der_len, 1273 const uint8_t *der); 1274 OPENSSL_EXPORT int SSL_use_certificate_ASN1(SSL *ssl, const uint8_t *der, 1275 size_t der_len); 1276 1277 OPENSSL_EXPORT int SSL_CTX_use_PrivateKey_ASN1(int pk, SSL_CTX *ctx, 1278 const uint8_t *der, 1279 size_t der_len); 1280 OPENSSL_EXPORT int SSL_use_PrivateKey_ASN1(int type, SSL *ssl, 1281 const uint8_t *der, size_t der_len); 1282 1283 OPENSSL_EXPORT int SSL_CTX_use_RSAPrivateKey_ASN1(SSL_CTX *ctx, 1284 const uint8_t *der, 1285 size_t der_len); 1286 OPENSSL_EXPORT int SSL_use_RSAPrivateKey_ASN1(SSL *ssl, const uint8_t *der, 1287 size_t der_len); 1288 1289 // The following functions configure certificates or private keys but take as 1290 // input files to read from. They return one on success and zero on failure. The 1291 // |type| parameter is one of the |SSL_FILETYPE_*| values and determines whether 1292 // the file's contents are read as PEM or DER. 1293 1294 #define SSL_FILETYPE_PEM 1 1295 #define SSL_FILETYPE_ASN1 2 1296 1297 OPENSSL_EXPORT int SSL_CTX_use_RSAPrivateKey_file(SSL_CTX *ctx, 1298 const char *file, int type); 1299 OPENSSL_EXPORT int SSL_use_RSAPrivateKey_file(SSL *ssl, const char *file, 1300 int type); 1301 1302 OPENSSL_EXPORT int SSL_CTX_use_certificate_file(SSL_CTX *ctx, const char *file, 1303 int type); 1304 OPENSSL_EXPORT int SSL_use_certificate_file(SSL *ssl, const char *file, 1305 int type); 1306 1307 OPENSSL_EXPORT int SSL_CTX_use_PrivateKey_file(SSL_CTX *ctx, const char *file, 1308 int type); 1309 OPENSSL_EXPORT int SSL_use_PrivateKey_file(SSL *ssl, const char *file, 1310 int type); 1311 1312 // SSL_CTX_use_certificate_chain_file configures certificates for |ctx|. It 1313 // reads the contents of |file| as a PEM-encoded leaf certificate followed 1314 // optionally by the certificate chain to send to the peer. It returns one on 1315 // success and zero on failure. 1316 // 1317 // WARNING: If the input contains "TRUSTED CERTIFICATE" PEM blocks, this 1318 // function parses auxiliary properties as in |d2i_X509_AUX|. Passing untrusted 1319 // input to this function allows an attacker to influence those properties. See 1320 // |d2i_X509_AUX| for details. 1321 OPENSSL_EXPORT int SSL_CTX_use_certificate_chain_file(SSL_CTX *ctx, 1322 const char *file); 1323 1324 // SSL_CTX_set_default_passwd_cb sets the password callback for PEM-based 1325 // convenience functions called on |ctx|. 1326 OPENSSL_EXPORT void SSL_CTX_set_default_passwd_cb(SSL_CTX *ctx, 1327 pem_password_cb *cb); 1328 1329 // SSL_CTX_get_default_passwd_cb returns the callback set by 1330 // |SSL_CTX_set_default_passwd_cb|. 1331 OPENSSL_EXPORT pem_password_cb *SSL_CTX_get_default_passwd_cb( 1332 const SSL_CTX *ctx); 1333 1334 // SSL_CTX_set_default_passwd_cb_userdata sets the userdata parameter for 1335 // |ctx|'s password callback. 1336 OPENSSL_EXPORT void SSL_CTX_set_default_passwd_cb_userdata(SSL_CTX *ctx, 1337 void *data); 1338 1339 // SSL_CTX_get_default_passwd_cb_userdata returns the userdata parameter set by 1340 // |SSL_CTX_set_default_passwd_cb_userdata|. 1341 OPENSSL_EXPORT void *SSL_CTX_get_default_passwd_cb_userdata(const SSL_CTX *ctx); 1342 1343 1344 // Custom private keys. 1345 1346 enum ssl_private_key_result_t BORINGSSL_ENUM_INT { 1347 ssl_private_key_success, 1348 ssl_private_key_retry, 1349 ssl_private_key_failure, 1350 }; 1351 1352 // ssl_private_key_method_st (aka |SSL_PRIVATE_KEY_METHOD|) describes private 1353 // key hooks. This is used to off-load signing operations to a custom, 1354 // potentially asynchronous, backend. Metadata about the key such as the type 1355 // and size are parsed out of the certificate. 1356 struct ssl_private_key_method_st { 1357 // sign signs the message |in| in using the specified signature algorithm. On 1358 // success, it returns |ssl_private_key_success| and writes at most |max_out| 1359 // bytes of signature data to |out| and sets |*out_len| to the number of bytes 1360 // written. On failure, it returns |ssl_private_key_failure|. If the operation 1361 // has not completed, it returns |ssl_private_key_retry|. |sign| should 1362 // arrange for the high-level operation on |ssl| to be retried when the 1363 // operation is completed. This will result in a call to |complete|. 1364 // 1365 // |signature_algorithm| is one of the |SSL_SIGN_*| values, as defined in TLS 1366 // 1.3. Note that, in TLS 1.2, ECDSA algorithms do not require that curve 1367 // sizes match hash sizes, so the curve portion of |SSL_SIGN_ECDSA_*| values 1368 // must be ignored. BoringSSL will internally handle the curve matching logic 1369 // where appropriate. 1370 // 1371 // It is an error to call |sign| while another private key operation is in 1372 // progress on |ssl|. 1373 enum ssl_private_key_result_t (*sign)(SSL *ssl, uint8_t *out, size_t *out_len, 1374 size_t max_out, 1375 uint16_t signature_algorithm, 1376 const uint8_t *in, size_t in_len); 1377 1378 // decrypt decrypts |in_len| bytes of encrypted data from |in|. On success it 1379 // returns |ssl_private_key_success|, writes at most |max_out| bytes of 1380 // decrypted data to |out| and sets |*out_len| to the actual number of bytes 1381 // written. On failure it returns |ssl_private_key_failure|. If the operation 1382 // has not completed, it returns |ssl_private_key_retry|. The caller should 1383 // arrange for the high-level operation on |ssl| to be retried when the 1384 // operation is completed, which will result in a call to |complete|. This 1385 // function only works with RSA keys and should perform a raw RSA decryption 1386 // operation with no padding. 1387 // 1388 // It is an error to call |decrypt| while another private key operation is in 1389 // progress on |ssl|. 1390 enum ssl_private_key_result_t (*decrypt)(SSL *ssl, uint8_t *out, 1391 size_t *out_len, size_t max_out, 1392 const uint8_t *in, size_t in_len); 1393 1394 // complete completes a pending operation. If the operation has completed, it 1395 // returns |ssl_private_key_success| and writes the result to |out| as in 1396 // |sign|. Otherwise, it returns |ssl_private_key_failure| on failure and 1397 // |ssl_private_key_retry| if the operation is still in progress. 1398 // 1399 // |complete| may be called arbitrarily many times before completion, but it 1400 // is an error to call |complete| if there is no pending operation in progress 1401 // on |ssl|. 1402 enum ssl_private_key_result_t (*complete)(SSL *ssl, uint8_t *out, 1403 size_t *out_len, size_t max_out); 1404 }; 1405 1406 // SSL_set_private_key_method configures a custom private key on |ssl|. 1407 // |key_method| must remain valid for the lifetime of |ssl|. 1408 // 1409 // If using an RSA or ECDSA key, callers should configure signing capabilities 1410 // with |SSL_set_signing_algorithm_prefs|. Otherwise, BoringSSL may select a 1411 // signature algorithm that |key_method| does not support. 1412 OPENSSL_EXPORT void SSL_set_private_key_method( 1413 SSL *ssl, const SSL_PRIVATE_KEY_METHOD *key_method); 1414 1415 // SSL_CTX_set_private_key_method configures a custom private key on |ctx|. 1416 // |key_method| must remain valid for the lifetime of |ctx|. 1417 // 1418 // If using an RSA or ECDSA key, callers should configure signing capabilities 1419 // with |SSL_CTX_set_signing_algorithm_prefs|. Otherwise, BoringSSL may select a 1420 // signature algorithm that |key_method| does not support. 1421 OPENSSL_EXPORT void SSL_CTX_set_private_key_method( 1422 SSL_CTX *ctx, const SSL_PRIVATE_KEY_METHOD *key_method); 1423 1424 // SSL_CREDENTIAL_set_private_key_method configures a custom private key on 1425 // |cred|. |key_method| must remain valid for the lifetime of |cred|. It returns 1426 // one on success and zero if |cred| does not use private keys. 1427 // 1428 // If using an RSA or ECDSA key, callers should configure signing capabilities 1429 // with |SSL_CREDENTIAL_set1_signing_algorithm_prefs|. Otherwise, BoringSSL may 1430 // select a signature algorithm that |key_method| does not support. This is not 1431 // necessary for delegated credentials (see |SSL_CREDENTIAL_new_delegated|) 1432 // because delegated credentials only support a single signature algorithm. 1433 // 1434 // Functions in |key_method| will be passed an |SSL| object, but not |cred| 1435 // directly. Use |SSL_get0_selected_credential| to determine the selected 1436 // credential. From there, |SSL_CREDENTIAL_get_ex_data| can be used to look up 1437 // credential-specific state, such as a handle to the private key. 1438 OPENSSL_EXPORT int SSL_CREDENTIAL_set_private_key_method( 1439 SSL_CREDENTIAL *cred, const SSL_PRIVATE_KEY_METHOD *key_method); 1440 1441 // SSL_can_release_private_key returns one if |ssl| will no longer call into the 1442 // private key and zero otherwise. If the function returns one, the caller can 1443 // release state associated with the private key. 1444 // 1445 // NOTE: This function assumes the caller does not use |SSL_clear| to reuse 1446 // |ssl| for a second connection. If |SSL_clear| is used, BoringSSL may still 1447 // use the private key on the second connection. 1448 OPENSSL_EXPORT int SSL_can_release_private_key(const SSL *ssl); 1449 1450 1451 // Cipher suites. 1452 // 1453 // |SSL_CIPHER| objects represent cipher suites. 1454 1455 DEFINE_CONST_STACK_OF(SSL_CIPHER) 1456 1457 // SSL_get_cipher_by_value returns the structure representing a TLS cipher 1458 // suite based on its assigned number, or NULL if unknown. See 1459 // https://www.iana.org/assignments/tls-parameters/tls-parameters.xhtml#tls-parameters-4. 1460 OPENSSL_EXPORT const SSL_CIPHER *SSL_get_cipher_by_value(uint16_t value); 1461 1462 // SSL_CIPHER_get_id returns |cipher|'s non-IANA id. This is not its 1463 // IANA-assigned number, which is called the "value" here, although it may be 1464 // cast to a |uint16_t| to get it. 1465 OPENSSL_EXPORT uint32_t SSL_CIPHER_get_id(const SSL_CIPHER *cipher); 1466 1467 // SSL_CIPHER_get_protocol_id returns |cipher|'s IANA-assigned number. 1468 OPENSSL_EXPORT uint16_t SSL_CIPHER_get_protocol_id(const SSL_CIPHER *cipher); 1469 1470 // SSL_CIPHER_is_aead returns one if |cipher| uses an AEAD cipher. 1471 OPENSSL_EXPORT int SSL_CIPHER_is_aead(const SSL_CIPHER *cipher); 1472 1473 // SSL_CIPHER_is_block_cipher returns one if |cipher| is a block cipher. 1474 OPENSSL_EXPORT int SSL_CIPHER_is_block_cipher(const SSL_CIPHER *cipher); 1475 1476 // SSL_CIPHER_get_cipher_nid returns the NID for |cipher|'s bulk 1477 // cipher. Possible values are |NID_aes_128_gcm|, |NID_aes_256_gcm|, 1478 // |NID_chacha20_poly1305|, |NID_aes_128_cbc|, |NID_aes_256_cbc|, and 1479 // |NID_des_ede3_cbc|. 1480 OPENSSL_EXPORT int SSL_CIPHER_get_cipher_nid(const SSL_CIPHER *cipher); 1481 1482 // SSL_CIPHER_get_digest_nid returns the NID for |cipher|'s HMAC if it is a 1483 // legacy cipher suite. For modern AEAD-based ciphers (see 1484 // |SSL_CIPHER_is_aead|), it returns |NID_undef|. 1485 // 1486 // Note this function only returns the legacy HMAC digest, not the PRF hash. 1487 OPENSSL_EXPORT int SSL_CIPHER_get_digest_nid(const SSL_CIPHER *cipher); 1488 1489 // SSL_CIPHER_get_kx_nid returns the NID for |cipher|'s key exchange. This may 1490 // be |NID_kx_rsa|, |NID_kx_ecdhe|, or |NID_kx_psk| for TLS 1.2. In TLS 1.3, 1491 // cipher suites do not specify the key exchange, so this function returns 1492 // |NID_kx_any|. 1493 OPENSSL_EXPORT int SSL_CIPHER_get_kx_nid(const SSL_CIPHER *cipher); 1494 1495 // SSL_CIPHER_get_auth_nid returns the NID for |cipher|'s authentication 1496 // type. This may be |NID_auth_rsa|, |NID_auth_ecdsa|, or |NID_auth_psk| for TLS 1497 // 1.2. In TLS 1.3, cipher suites do not specify authentication, so this 1498 // function returns |NID_auth_any|. 1499 OPENSSL_EXPORT int SSL_CIPHER_get_auth_nid(const SSL_CIPHER *cipher); 1500 1501 // SSL_CIPHER_get_handshake_digest returns |cipher|'s PRF hash. If |cipher| 1502 // is a pre-TLS-1.2 cipher, it returns |EVP_md5_sha1| but note these ciphers use 1503 // SHA-256 in TLS 1.2. Other return values may be treated uniformly in all 1504 // applicable versions. 1505 OPENSSL_EXPORT const EVP_MD *SSL_CIPHER_get_handshake_digest( 1506 const SSL_CIPHER *cipher); 1507 1508 // SSL_CIPHER_get_prf_nid behaves like |SSL_CIPHER_get_handshake_digest| but 1509 // returns the NID constant. Use |SSL_CIPHER_get_handshake_digest| instead. 1510 OPENSSL_EXPORT int SSL_CIPHER_get_prf_nid(const SSL_CIPHER *cipher); 1511 1512 // SSL_CIPHER_get_min_version returns the minimum protocol version required 1513 // for |cipher|. 1514 OPENSSL_EXPORT uint16_t SSL_CIPHER_get_min_version(const SSL_CIPHER *cipher); 1515 1516 // SSL_CIPHER_get_max_version returns the maximum protocol version that 1517 // supports |cipher|. 1518 OPENSSL_EXPORT uint16_t SSL_CIPHER_get_max_version(const SSL_CIPHER *cipher); 1519 1520 // SSL_CIPHER_standard_name returns the standard IETF name for |cipher|. For 1521 // example, "TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256". 1522 OPENSSL_EXPORT const char *SSL_CIPHER_standard_name(const SSL_CIPHER *cipher); 1523 1524 // SSL_CIPHER_get_name returns the OpenSSL name of |cipher|. For example, 1525 // "ECDHE-RSA-AES128-GCM-SHA256". Callers are recommended to use 1526 // |SSL_CIPHER_standard_name| instead. 1527 OPENSSL_EXPORT const char *SSL_CIPHER_get_name(const SSL_CIPHER *cipher); 1528 1529 // SSL_CIPHER_get_kx_name returns a string that describes the key-exchange 1530 // method used by |cipher|. For example, "ECDHE_ECDSA". TLS 1.3 AEAD-only 1531 // ciphers return the string "GENERIC". 1532 OPENSSL_EXPORT const char *SSL_CIPHER_get_kx_name(const SSL_CIPHER *cipher); 1533 1534 // SSL_CIPHER_get_bits returns the strength, in bits, of |cipher|. If 1535 // |out_alg_bits| is not NULL, it writes the number of bits consumed by the 1536 // symmetric algorithm to |*out_alg_bits|. 1537 OPENSSL_EXPORT int SSL_CIPHER_get_bits(const SSL_CIPHER *cipher, 1538 int *out_alg_bits); 1539 1540 // SSL_get_all_cipher_names outputs a list of possible strings 1541 // |SSL_CIPHER_get_name| may return in this version of BoringSSL. It writes at 1542 // most |max_out| entries to |out| and returns the total number it would have 1543 // written, if |max_out| had been large enough. |max_out| may be initially set 1544 // to zero to size the output. 1545 // 1546 // This function is only intended to help initialize tables in callers that want 1547 // possible strings pre-declared. This list would not be suitable to set a list 1548 // of supported features. It is in no particular order, and may contain 1549 // placeholder, experimental, or deprecated values that do not apply to every 1550 // caller. Future versions of BoringSSL may also return strings not in this 1551 // list, so this does not apply if, say, sending strings across services. 1552 OPENSSL_EXPORT size_t SSL_get_all_cipher_names(const char **out, 1553 size_t max_out); 1554 1555 1556 // SSL_get_all_standard_cipher_names outputs a list of possible strings 1557 // |SSL_CIPHER_standard_name| may return in this version of BoringSSL. It writes 1558 // at most |max_out| entries to |out| and returns the total number it would have 1559 // written, if |max_out| had been large enough. |max_out| may be initially set 1560 // to zero to size the output. 1561 // 1562 // This function is only intended to help initialize tables in callers that want 1563 // possible strings pre-declared. This list would not be suitable to set a list 1564 // of supported features. It is in no particular order, and may contain 1565 // placeholder, experimental, or deprecated values that do not apply to every 1566 // caller. Future versions of BoringSSL may also return strings not in this 1567 // list, so this does not apply if, say, sending strings across services. 1568 OPENSSL_EXPORT size_t SSL_get_all_standard_cipher_names(const char **out, 1569 size_t max_out); 1570 1571 1572 // Cipher suite configuration. 1573 // 1574 // OpenSSL uses a mini-language to configure cipher suites. The language 1575 // maintains an ordered list of enabled ciphers, along with an ordered list of 1576 // disabled but available ciphers. Initially, all ciphers are disabled with a 1577 // default ordering. The cipher string is then interpreted as a sequence of 1578 // directives, separated by colons, each of which modifies this state. 1579 // 1580 // Most directives consist of a one character or empty opcode followed by a 1581 // selector which matches a subset of available ciphers. 1582 // 1583 // Available opcodes are: 1584 // 1585 // - The empty opcode enables and appends all matching disabled ciphers to the 1586 // end of the enabled list. The newly appended ciphers are ordered relative to 1587 // each other matching their order in the disabled list. 1588 // 1589 // - |-| disables all matching enabled ciphers and prepends them to the disabled 1590 // list, with relative order from the enabled list preserved. This means the 1591 // most recently disabled ciphers get highest preference relative to other 1592 // disabled ciphers if re-enabled. 1593 // 1594 // - |+| moves all matching enabled ciphers to the end of the enabled list, with 1595 // relative order preserved. 1596 // 1597 // - |!| deletes all matching ciphers, enabled or not, from either list. Deleted 1598 // ciphers will not matched by future operations. 1599 // 1600 // A selector may be a specific cipher (using either the standard or OpenSSL 1601 // name for the cipher) or one or more rules separated by |+|. The final 1602 // selector matches the intersection of each rule. For instance, |AESGCM+aECDSA| 1603 // matches ECDSA-authenticated AES-GCM ciphers. 1604 // 1605 // Available cipher rules are: 1606 // 1607 // - |ALL| matches all ciphers, except for deprecated ciphers which must be 1608 // named explicitly. 1609 // 1610 // - |kRSA|, |kDHE|, |kECDHE|, and |kPSK| match ciphers using plain RSA, DHE, 1611 // ECDHE, and plain PSK key exchanges, respectively. Note that ECDHE_PSK is 1612 // matched by |kECDHE| and not |kPSK|. 1613 // 1614 // - |aRSA|, |aECDSA|, and |aPSK| match ciphers authenticated by RSA, ECDSA, and 1615 // a pre-shared key, respectively. 1616 // 1617 // - |RSA|, |DHE|, |ECDHE|, |PSK|, |ECDSA|, and |PSK| are aliases for the 1618 // corresponding |k*| or |a*| cipher rule. |RSA| is an alias for |kRSA|, not 1619 // |aRSA|. 1620 // 1621 // - |3DES|, |AES128|, |AES256|, |AES|, |AESGCM|, |CHACHA20| match ciphers 1622 // whose bulk cipher use the corresponding encryption scheme. Note that 1623 // |AES|, |AES128|, and |AES256| match both CBC and GCM ciphers. 1624 // 1625 // - |SHA1|, and its alias |SHA|, match legacy cipher suites using HMAC-SHA1. 1626 // 1627 // Deprecated cipher rules: 1628 // 1629 // - |kEDH|, |EDH|, |kEECDH|, and |EECDH| are legacy aliases for |kDHE|, |DHE|, 1630 // |kECDHE|, and |ECDHE|, respectively. 1631 // 1632 // - |HIGH| is an alias for |ALL|. 1633 // 1634 // - |FIPS| is an alias for |HIGH|. 1635 // 1636 // - |SSLv3| and |TLSv1| match ciphers available in TLS 1.1 or earlier. 1637 // |TLSv1_2| matches ciphers new in TLS 1.2. This is confusing and should not 1638 // be used. 1639 // 1640 // Unknown rules are silently ignored by legacy APIs, and rejected by APIs with 1641 // "strict" in the name, which should be preferred. Cipher lists can be long 1642 // and it's easy to commit typos. Strict functions will also reject the use of 1643 // spaces, semi-colons and commas as alternative separators. 1644 // 1645 // The special |@STRENGTH| directive will sort all enabled ciphers by strength. 1646 // 1647 // The |DEFAULT| directive, when appearing at the front of the string, expands 1648 // to the default ordering of available ciphers. 1649 // 1650 // If configuring a server, one may also configure equal-preference groups to 1651 // partially respect the client's preferences when 1652 // |SSL_OP_CIPHER_SERVER_PREFERENCE| is enabled. Ciphers in an equal-preference 1653 // group have equal priority and use the client order. This may be used to 1654 // enforce that AEADs are preferred but select AES-GCM vs. ChaCha20-Poly1305 1655 // based on client preferences. An equal-preference is specified with square 1656 // brackets, combining multiple selectors separated by |. For example: 1657 // 1658 // [TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305_SHA256|TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256] 1659 // 1660 // Once an equal-preference group is used, future directives must be 1661 // opcode-less. Inside an equal-preference group, spaces are not allowed. 1662 // 1663 // TLS 1.3 ciphers do not participate in this mechanism and instead have a 1664 // built-in preference order. Functions to set cipher lists do not affect TLS 1665 // 1.3, and functions to query the cipher list do not include TLS 1.3 ciphers. 1666 1667 // SSL_DEFAULT_CIPHER_LIST is the default cipher suite configuration. It is 1668 // substituted when a cipher string starts with 'DEFAULT'. 1669 #define SSL_DEFAULT_CIPHER_LIST "ALL" 1670 1671 // SSL_CTX_set_strict_cipher_list configures the cipher list for |ctx|, 1672 // evaluating |str| as a cipher string and returning error if |str| contains 1673 // anything meaningless. It returns one on success and zero on failure. 1674 OPENSSL_EXPORT int SSL_CTX_set_strict_cipher_list(SSL_CTX *ctx, 1675 const char *str); 1676 1677 // SSL_CTX_set_cipher_list configures the cipher list for |ctx|, evaluating 1678 // |str| as a cipher string. It returns one on success and zero on failure. 1679 // 1680 // Prefer to use |SSL_CTX_set_strict_cipher_list|. This function tolerates 1681 // garbage inputs, unless an empty cipher list results. 1682 OPENSSL_EXPORT int SSL_CTX_set_cipher_list(SSL_CTX *ctx, const char *str); 1683 1684 // SSL_set_strict_cipher_list configures the cipher list for |ssl|, evaluating 1685 // |str| as a cipher string and returning error if |str| contains anything 1686 // meaningless. It returns one on success and zero on failure. 1687 OPENSSL_EXPORT int SSL_set_strict_cipher_list(SSL *ssl, const char *str); 1688 1689 // SSL_set_cipher_list configures the cipher list for |ssl|, evaluating |str| as 1690 // a cipher string. It returns one on success and zero on failure. 1691 // 1692 // Prefer to use |SSL_set_strict_cipher_list|. This function tolerates garbage 1693 // inputs, unless an empty cipher list results. 1694 OPENSSL_EXPORT int SSL_set_cipher_list(SSL *ssl, const char *str); 1695 1696 // SSL_CTX_get_ciphers returns the cipher list for |ctx|, in order of 1697 // preference. 1698 OPENSSL_EXPORT STACK_OF(SSL_CIPHER) *SSL_CTX_get_ciphers(const SSL_CTX *ctx); 1699 1700 // SSL_CTX_cipher_in_group returns one if the |i|th cipher (see 1701 // |SSL_CTX_get_ciphers|) is in the same equipreference group as the one 1702 // following it and zero otherwise. 1703 OPENSSL_EXPORT int SSL_CTX_cipher_in_group(const SSL_CTX *ctx, size_t i); 1704 1705 // SSL_get_ciphers returns the cipher list for |ssl|, in order of preference. 1706 OPENSSL_EXPORT STACK_OF(SSL_CIPHER) *SSL_get_ciphers(const SSL *ssl); 1707 1708 1709 // Connection information. 1710 1711 // SSL_is_init_finished returns one if |ssl| has completed its initial handshake 1712 // and has no pending handshake. It returns zero otherwise. 1713 OPENSSL_EXPORT int SSL_is_init_finished(const SSL *ssl); 1714 1715 // SSL_in_init returns one if |ssl| has a pending handshake and zero 1716 // otherwise. 1717 OPENSSL_EXPORT int SSL_in_init(const SSL *ssl); 1718 1719 // SSL_in_false_start returns one if |ssl| has a pending handshake that is in 1720 // False Start. |SSL_write| may be called at this point without waiting for the 1721 // peer, but |SSL_read| will complete the handshake before accepting application 1722 // data. 1723 // 1724 // See also |SSL_MODE_ENABLE_FALSE_START|. 1725 OPENSSL_EXPORT int SSL_in_false_start(const SSL *ssl); 1726 1727 // SSL_get_peer_certificate returns the peer's leaf certificate or NULL if the 1728 // peer did not use certificates. The caller must call |X509_free| on the 1729 // result to release it. 1730 OPENSSL_EXPORT X509 *SSL_get_peer_certificate(const SSL *ssl); 1731 1732 // SSL_get_peer_cert_chain returns the peer's certificate chain or NULL if 1733 // unavailable or the peer did not use certificates. This is the unverified list 1734 // of certificates as sent by the peer, not the final chain built during 1735 // verification. The caller does not take ownership of the result. 1736 // 1737 // WARNING: This function behaves differently between client and server. If 1738 // |ssl| is a server, the returned chain does not include the leaf certificate. 1739 // If a client, it does. 1740 OPENSSL_EXPORT STACK_OF(X509) *SSL_get_peer_cert_chain(const SSL *ssl); 1741 1742 // SSL_get_peer_full_cert_chain returns the peer's certificate chain, or NULL if 1743 // unavailable or the peer did not use certificates. This is the unverified list 1744 // of certificates as sent by the peer, not the final chain built during 1745 // verification. The caller does not take ownership of the result. 1746 // 1747 // This is the same as |SSL_get_peer_cert_chain| except that this function 1748 // always returns the full chain, i.e. the first element of the return value 1749 // (if any) will be the leaf certificate. In constrast, 1750 // |SSL_get_peer_cert_chain| returns only the intermediate certificates if the 1751 // |ssl| is a server. 1752 OPENSSL_EXPORT STACK_OF(X509) *SSL_get_peer_full_cert_chain(const SSL *ssl); 1753 1754 // SSL_get0_peer_certificates returns the peer's certificate chain, or NULL if 1755 // unavailable or the peer did not use certificates. This is the unverified list 1756 // of certificates as sent by the peer, not the final chain built during 1757 // verification. The caller does not take ownership of the result. 1758 // 1759 // This is the |CRYPTO_BUFFER| variant of |SSL_get_peer_full_cert_chain|. 1760 OPENSSL_EXPORT const STACK_OF(CRYPTO_BUFFER) *SSL_get0_peer_certificates( 1761 const SSL *ssl); 1762 1763 // SSL_get0_signed_cert_timestamp_list sets |*out| and |*out_len| to point to 1764 // |*out_len| bytes of SCT information from the server. This is only valid if 1765 // |ssl| is a client. The SCT information is a SignedCertificateTimestampList 1766 // (including the two leading length bytes). 1767 // See https://tools.ietf.org/html/rfc6962#section-3.3 1768 // If no SCT was received then |*out_len| will be zero on return. 1769 // 1770 // WARNING: the returned data is not guaranteed to be well formed. 1771 OPENSSL_EXPORT void SSL_get0_signed_cert_timestamp_list(const SSL *ssl, 1772 const uint8_t **out, 1773 size_t *out_len); 1774 1775 // SSL_get0_ocsp_response sets |*out| and |*out_len| to point to |*out_len| 1776 // bytes of an OCSP response from the server. This is the DER encoding of an 1777 // OCSPResponse type as defined in RFC 2560. 1778 // 1779 // WARNING: the returned data is not guaranteed to be well formed. 1780 OPENSSL_EXPORT void SSL_get0_ocsp_response(const SSL *ssl, const uint8_t **out, 1781 size_t *out_len); 1782 1783 // SSL_get_tls_unique writes at most |max_out| bytes of the tls-unique value 1784 // for |ssl| to |out| and sets |*out_len| to the number of bytes written. It 1785 // returns one on success or zero on error. In general |max_out| should be at 1786 // least 12. 1787 // 1788 // This function will always fail if the initial handshake has not completed. 1789 // The tls-unique value will change after a renegotiation but, since 1790 // renegotiations can be initiated by the server at any point, the higher-level 1791 // protocol must either leave them disabled or define states in which the 1792 // tls-unique value can be read. 1793 // 1794 // The tls-unique value is defined by 1795 // https://tools.ietf.org/html/rfc5929#section-3.1. Due to a weakness in the 1796 // TLS protocol, tls-unique is broken for resumed connections unless the 1797 // Extended Master Secret extension is negotiated. Thus this function will 1798 // return zero if |ssl| performed session resumption unless EMS was used when 1799 // negotiating the original session. 1800 OPENSSL_EXPORT int SSL_get_tls_unique(const SSL *ssl, uint8_t *out, 1801 size_t *out_len, size_t max_out); 1802 1803 // SSL_get_extms_support returns one if the Extended Master Secret extension or 1804 // TLS 1.3 was negotiated. Otherwise, it returns zero. 1805 OPENSSL_EXPORT int SSL_get_extms_support(const SSL *ssl); 1806 1807 // SSL_get_current_cipher returns cipher suite used by |ssl|, or NULL if it has 1808 // not been negotiated yet. 1809 OPENSSL_EXPORT const SSL_CIPHER *SSL_get_current_cipher(const SSL *ssl); 1810 1811 // SSL_session_reused returns one if |ssl| performed an abbreviated handshake 1812 // and zero otherwise. 1813 // 1814 // TODO(davidben): Hammer down the semantics of this API while a handshake, 1815 // initial or renego, is in progress. 1816 OPENSSL_EXPORT int SSL_session_reused(const SSL *ssl); 1817 1818 // SSL_get_secure_renegotiation_support returns one if the peer supports secure 1819 // renegotiation (RFC 5746) or TLS 1.3. Otherwise, it returns zero. 1820 OPENSSL_EXPORT int SSL_get_secure_renegotiation_support(const SSL *ssl); 1821 1822 // SSL_export_keying_material exports a connection-specific secret from |ssl|, 1823 // as specified in RFC 5705. It writes |out_len| bytes to |out| given a label 1824 // and optional context. If |use_context| is zero, the |context| parameter is 1825 // ignored. 1826 // 1827 // To derive the same value, both sides of a connection must use the same output 1828 // length, label, and context. In TLS 1.2 and earlier, using a zero-length 1829 // context and using no context would give different output. In TLS 1.3 and 1830 // later, the output length impacts the derivation, so a truncated longer export 1831 // will not match a shorter export. 1832 // 1833 // It returns one on success and zero otherwise. 1834 OPENSSL_EXPORT int SSL_export_keying_material(const SSL *ssl, uint8_t *out, 1835 size_t out_len, const char *label, 1836 size_t label_len, 1837 const uint8_t *context, 1838 size_t context_len, 1839 int use_context); 1840 1841 1842 // Sessions. 1843 // 1844 // An |SSL_SESSION| represents an SSL session that may be resumed in an 1845 // abbreviated handshake. It is reference-counted and immutable. Once 1846 // established, an |SSL_SESSION| may be shared by multiple |SSL| objects on 1847 // different threads and must not be modified. 1848 // 1849 // Note the TLS notion of "session" is not suitable for application-level 1850 // session state. It is an optional caching mechanism for the handshake. Not all 1851 // connections within an application-level session will reuse TLS sessions. TLS 1852 // sessions may be dropped by the client or ignored by the server at any time. 1853 1854 DECLARE_PEM_rw(SSL_SESSION, SSL_SESSION) 1855 1856 // SSL_SESSION_new returns a newly-allocated blank |SSL_SESSION| or NULL on 1857 // error. This may be useful when writing tests but should otherwise not be 1858 // used. 1859 OPENSSL_EXPORT SSL_SESSION *SSL_SESSION_new(const SSL_CTX *ctx); 1860 1861 // SSL_SESSION_up_ref increments the reference count of |session| and returns 1862 // one. 1863 OPENSSL_EXPORT int SSL_SESSION_up_ref(SSL_SESSION *session); 1864 1865 // SSL_SESSION_free decrements the reference count of |session|. If it reaches 1866 // zero, all data referenced by |session| and |session| itself are released. 1867 OPENSSL_EXPORT void SSL_SESSION_free(SSL_SESSION *session); 1868 1869 // SSL_SESSION_to_bytes serializes |in| into a newly allocated buffer and sets 1870 // |*out_data| to that buffer and |*out_len| to its length. The caller takes 1871 // ownership of the buffer and must call |OPENSSL_free| when done. It returns 1872 // one on success and zero on error. 1873 OPENSSL_EXPORT int SSL_SESSION_to_bytes(const SSL_SESSION *in, 1874 uint8_t **out_data, size_t *out_len); 1875 1876 // SSL_SESSION_to_bytes_for_ticket serializes |in|, but excludes the session 1877 // identification information, namely the session ID and ticket. 1878 OPENSSL_EXPORT int SSL_SESSION_to_bytes_for_ticket(const SSL_SESSION *in, 1879 uint8_t **out_data, 1880 size_t *out_len); 1881 1882 // SSL_SESSION_from_bytes parses |in_len| bytes from |in| as an SSL_SESSION. It 1883 // returns a newly-allocated |SSL_SESSION| on success or NULL on error. 1884 OPENSSL_EXPORT SSL_SESSION *SSL_SESSION_from_bytes(const uint8_t *in, 1885 size_t in_len, 1886 const SSL_CTX *ctx); 1887 1888 // SSL_SESSION_get_version returns a string describing the TLS or DTLS version 1889 // |session| was established at. For example, "TLSv1.2" or "DTLSv1". 1890 OPENSSL_EXPORT const char *SSL_SESSION_get_version(const SSL_SESSION *session); 1891 1892 // SSL_SESSION_get_protocol_version returns the TLS or DTLS version |session| 1893 // was established at. 1894 OPENSSL_EXPORT uint16_t 1895 SSL_SESSION_get_protocol_version(const SSL_SESSION *session); 1896 1897 // SSL_SESSION_set_protocol_version sets |session|'s TLS or DTLS version to 1898 // |version|. This may be useful when writing tests but should otherwise not be 1899 // used. It returns one on success and zero on error. 1900 OPENSSL_EXPORT int SSL_SESSION_set_protocol_version(SSL_SESSION *session, 1901 uint16_t version); 1902 1903 // SSL_MAX_SSL_SESSION_ID_LENGTH is the maximum length of an SSL session ID. 1904 #define SSL_MAX_SSL_SESSION_ID_LENGTH 32 1905 1906 // SSL_SESSION_get_id returns a pointer to a buffer containing |session|'s 1907 // session ID and sets |*out_len| to its length. 1908 // 1909 // This function should only be used for implementing a TLS session cache. TLS 1910 // sessions are not suitable for application-level session state, and a session 1911 // ID is an implementation detail of the TLS resumption handshake mechanism. Not 1912 // all resumption flows use session IDs, and not all connections within an 1913 // application-level session will reuse TLS sessions. 1914 // 1915 // To determine if resumption occurred, use |SSL_session_reused| instead. 1916 // Comparing session IDs will not give the right result in all cases. 1917 // 1918 // As a workaround for some broken applications, BoringSSL sometimes synthesizes 1919 // arbitrary session IDs for non-ID-based sessions. This behavior may be 1920 // removed in the future. 1921 OPENSSL_EXPORT const uint8_t *SSL_SESSION_get_id(const SSL_SESSION *session, 1922 unsigned *out_len); 1923 1924 // SSL_SESSION_set1_id sets |session|'s session ID to |sid|, It returns one on 1925 // success and zero on error. This function may be useful in writing tests but 1926 // otherwise should not be used. 1927 OPENSSL_EXPORT int SSL_SESSION_set1_id(SSL_SESSION *session, const uint8_t *sid, 1928 size_t sid_len); 1929 1930 // SSL_SESSION_get_time returns the time at which |session| was established in 1931 // seconds since the UNIX epoch. 1932 OPENSSL_EXPORT uint64_t SSL_SESSION_get_time(const SSL_SESSION *session); 1933 1934 // SSL_SESSION_get_timeout returns the lifetime of |session| in seconds. 1935 OPENSSL_EXPORT uint32_t SSL_SESSION_get_timeout(const SSL_SESSION *session); 1936 1937 // SSL_SESSION_get0_peer returns the peer leaf certificate stored in 1938 // |session|. 1939 // 1940 // TODO(davidben): This should return a const X509 *. 1941 OPENSSL_EXPORT X509 *SSL_SESSION_get0_peer(const SSL_SESSION *session); 1942 1943 // SSL_SESSION_get0_peer_certificates returns the peer certificate chain stored 1944 // in |session|, or NULL if the peer did not use certificates. This is the 1945 // unverified list of certificates as sent by the peer, not the final chain 1946 // built during verification. The caller does not take ownership of the result. 1947 OPENSSL_EXPORT const STACK_OF(CRYPTO_BUFFER) * 1948 SSL_SESSION_get0_peer_certificates(const SSL_SESSION *session); 1949 1950 // SSL_SESSION_get0_signed_cert_timestamp_list sets |*out| and |*out_len| to 1951 // point to |*out_len| bytes of SCT information stored in |session|. This is 1952 // only valid for client sessions. The SCT information is a 1953 // SignedCertificateTimestampList (including the two leading length bytes). See 1954 // https://tools.ietf.org/html/rfc6962#section-3.3 If no SCT was received then 1955 // |*out_len| will be zero on return. 1956 // 1957 // WARNING: the returned data is not guaranteed to be well formed. 1958 OPENSSL_EXPORT void SSL_SESSION_get0_signed_cert_timestamp_list( 1959 const SSL_SESSION *session, const uint8_t **out, size_t *out_len); 1960 1961 // SSL_SESSION_get0_ocsp_response sets |*out| and |*out_len| to point to 1962 // |*out_len| bytes of an OCSP response from the server. This is the DER 1963 // encoding of an OCSPResponse type as defined in RFC 2560. 1964 // 1965 // WARNING: the returned data is not guaranteed to be well formed. 1966 OPENSSL_EXPORT void SSL_SESSION_get0_ocsp_response(const SSL_SESSION *session, 1967 const uint8_t **out, 1968 size_t *out_len); 1969 1970 // SSL_MAX_MASTER_KEY_LENGTH is the maximum length of a master secret. 1971 #define SSL_MAX_MASTER_KEY_LENGTH 48 1972 1973 // SSL_SESSION_get_master_key writes up to |max_out| bytes of |session|'s secret 1974 // to |out| and returns the number of bytes written. If |max_out| is zero, it 1975 // returns the size of the secret. 1976 OPENSSL_EXPORT size_t SSL_SESSION_get_master_key(const SSL_SESSION *session, 1977 uint8_t *out, size_t max_out); 1978 1979 // SSL_SESSION_set_time sets |session|'s creation time to |time| and returns 1980 // |time|. This function may be useful in writing tests but otherwise should not 1981 // be used. 1982 OPENSSL_EXPORT uint64_t SSL_SESSION_set_time(SSL_SESSION *session, 1983 uint64_t time); 1984 1985 // SSL_SESSION_set_timeout sets |session|'s timeout to |timeout| and returns 1986 // one. This function may be useful in writing tests but otherwise should not 1987 // be used. 1988 OPENSSL_EXPORT uint32_t SSL_SESSION_set_timeout(SSL_SESSION *session, 1989 uint32_t timeout); 1990 1991 // SSL_SESSION_get0_id_context returns a pointer to a buffer containing 1992 // |session|'s session ID context (see |SSL_CTX_set_session_id_context|) and 1993 // sets |*out_len| to its length. 1994 OPENSSL_EXPORT const uint8_t *SSL_SESSION_get0_id_context( 1995 const SSL_SESSION *session, unsigned *out_len); 1996 1997 // SSL_SESSION_set1_id_context sets |session|'s session ID context (see 1998 // |SSL_CTX_set_session_id_context|) to |sid_ctx|. It returns one on success and 1999 // zero on error. This function may be useful in writing tests but otherwise 2000 // should not be used. 2001 OPENSSL_EXPORT int SSL_SESSION_set1_id_context(SSL_SESSION *session, 2002 const uint8_t *sid_ctx, 2003 size_t sid_ctx_len); 2004 2005 // SSL_SESSION_should_be_single_use returns one if |session| should be 2006 // single-use (TLS 1.3 and later) and zero otherwise. 2007 // 2008 // If this function returns one, clients retain multiple sessions and use each 2009 // only once. This prevents passive observers from correlating connections with 2010 // tickets. See RFC 8446, appendix C.4. If it returns zero, |session| cannot be 2011 // used without leaking a correlator. 2012 OPENSSL_EXPORT int SSL_SESSION_should_be_single_use(const SSL_SESSION *session); 2013 2014 // SSL_SESSION_is_resumable returns one if |session| is complete and contains a 2015 // session ID or ticket. It returns zero otherwise. Note this function does not 2016 // ensure |session| will be resumed. It may be expired, dropped by the server, 2017 // or associated with incompatible parameters. 2018 OPENSSL_EXPORT int SSL_SESSION_is_resumable(const SSL_SESSION *session); 2019 2020 // SSL_SESSION_has_ticket returns one if |session| has a ticket and zero 2021 // otherwise. 2022 OPENSSL_EXPORT int SSL_SESSION_has_ticket(const SSL_SESSION *session); 2023 2024 // SSL_SESSION_get0_ticket sets |*out_ticket| and |*out_len| to |session|'s 2025 // ticket, or NULL and zero if it does not have one. |out_ticket| may be NULL 2026 // if only the ticket length is needed. 2027 OPENSSL_EXPORT void SSL_SESSION_get0_ticket(const SSL_SESSION *session, 2028 const uint8_t **out_ticket, 2029 size_t *out_len); 2030 2031 // SSL_SESSION_set_ticket sets |session|'s ticket to |ticket|. It returns one on 2032 // success and zero on error. This function may be useful in writing tests but 2033 // otherwise should not be used. 2034 OPENSSL_EXPORT int SSL_SESSION_set_ticket(SSL_SESSION *session, 2035 const uint8_t *ticket, 2036 size_t ticket_len); 2037 2038 // SSL_SESSION_get_ticket_lifetime_hint returns ticket lifetime hint of 2039 // |session| in seconds or zero if none was set. 2040 OPENSSL_EXPORT uint32_t 2041 SSL_SESSION_get_ticket_lifetime_hint(const SSL_SESSION *session); 2042 2043 // SSL_SESSION_get0_cipher returns the cipher negotiated by the connection which 2044 // established |session|. 2045 // 2046 // Note that, in TLS 1.3, there is no guarantee that resumptions with |session| 2047 // will use that cipher. Prefer calling |SSL_get_current_cipher| on the |SSL| 2048 // instead. 2049 OPENSSL_EXPORT const SSL_CIPHER *SSL_SESSION_get0_cipher( 2050 const SSL_SESSION *session); 2051 2052 // SSL_SESSION_has_peer_sha256 returns one if |session| has a SHA-256 hash of 2053 // the peer's certificate retained and zero if the peer did not present a 2054 // certificate or if this was not enabled when |session| was created. See also 2055 // |SSL_CTX_set_retain_only_sha256_of_client_certs|. 2056 OPENSSL_EXPORT int SSL_SESSION_has_peer_sha256(const SSL_SESSION *session); 2057 2058 // SSL_SESSION_get0_peer_sha256 sets |*out_ptr| and |*out_len| to the SHA-256 2059 // hash of the peer certificate retained in |session|, or NULL and zero if it 2060 // does not have one. See also |SSL_CTX_set_retain_only_sha256_of_client_certs|. 2061 OPENSSL_EXPORT void SSL_SESSION_get0_peer_sha256(const SSL_SESSION *session, 2062 const uint8_t **out_ptr, 2063 size_t *out_len); 2064 2065 // SSL_SESSION_is_resumable_across_names returns one if |session| may be resumed 2066 // with any identity in the server certificate and zero otherwise. See 2067 // draft-ietf-tls-cross-sni-resumption. 2068 OPENSSL_EXPORT int SSL_SESSION_is_resumable_across_names( 2069 const SSL_SESSION *session); 2070 2071 2072 // Session caching. 2073 // 2074 // Session caching allows connections to be established more efficiently based 2075 // on saved parameters from a previous connection, called a session (see 2076 // |SSL_SESSION|). The client offers a saved session, using an opaque identifier 2077 // from a previous connection. The server may accept the session, if it has the 2078 // parameters available. Otherwise, it will decline and continue with a full 2079 // handshake. 2080 // 2081 // This requires both the client and the server to retain session state. A 2082 // client does so with a stateful session cache. A server may do the same or, if 2083 // supported by both sides, statelessly using session tickets. For more 2084 // information on the latter, see the next section. 2085 // 2086 // For a server, the library implements a built-in internal session cache as an 2087 // in-memory hash table. Servers may also use |SSL_CTX_sess_set_get_cb| and 2088 // |SSL_CTX_sess_set_new_cb| to implement a custom external session cache. In 2089 // particular, this may be used to share a session cache between multiple 2090 // servers in a large deployment. An external cache may be used in addition to 2091 // or instead of the internal one. Use |SSL_CTX_set_session_cache_mode| to 2092 // toggle the internal cache. 2093 // 2094 // For a client, the only option is an external session cache. Clients may use 2095 // |SSL_CTX_sess_set_new_cb| to register a callback for when new sessions are 2096 // available. These may be cached and, in subsequent compatible connections, 2097 // configured with |SSL_set_session|. 2098 // 2099 // Note that offering or accepting a session short-circuits certificate 2100 // verification and most parameter negotiation. Resuming sessions across 2101 // different contexts may result in security failures and surprising 2102 // behavior. For a typical client, this means sessions for different hosts must 2103 // be cached under different keys. A client that connects to the same host with, 2104 // e.g., different cipher suite settings or client certificates should also use 2105 // separate session caches between those contexts. Servers should also partition 2106 // session caches between SNI hosts with |SSL_CTX_set_session_id_context|. 2107 // 2108 // Note also, in TLS 1.2 and earlier, offering sessions allows passive observers 2109 // to correlate different client connections. TLS 1.3 and later fix this, 2110 // provided clients use sessions at most once. Session caches are managed by the 2111 // caller in BoringSSL, so this must be implemented externally. See 2112 // |SSL_SESSION_should_be_single_use| for details. 2113 2114 // SSL_SESS_CACHE_OFF disables all session caching. 2115 #define SSL_SESS_CACHE_OFF 0x0000 2116 2117 // SSL_SESS_CACHE_CLIENT enables session caching for a client. The internal 2118 // cache is never used on a client, so this only enables the callbacks. 2119 #define SSL_SESS_CACHE_CLIENT 0x0001 2120 2121 // SSL_SESS_CACHE_SERVER enables session caching for a server. 2122 #define SSL_SESS_CACHE_SERVER 0x0002 2123 2124 // SSL_SESS_CACHE_BOTH enables session caching for both client and server. 2125 #define SSL_SESS_CACHE_BOTH (SSL_SESS_CACHE_CLIENT | SSL_SESS_CACHE_SERVER) 2126 2127 // SSL_SESS_CACHE_NO_AUTO_CLEAR disables automatically calling 2128 // |SSL_CTX_flush_sessions| every 255 connections. 2129 #define SSL_SESS_CACHE_NO_AUTO_CLEAR 0x0080 2130 2131 // SSL_SESS_CACHE_NO_INTERNAL_LOOKUP, on a server, disables looking up a session 2132 // from the internal session cache. 2133 #define SSL_SESS_CACHE_NO_INTERNAL_LOOKUP 0x0100 2134 2135 // SSL_SESS_CACHE_NO_INTERNAL_STORE, on a server, disables storing sessions in 2136 // the internal session cache. 2137 #define SSL_SESS_CACHE_NO_INTERNAL_STORE 0x0200 2138 2139 // SSL_SESS_CACHE_NO_INTERNAL, on a server, disables the internal session 2140 // cache. 2141 #define SSL_SESS_CACHE_NO_INTERNAL \ 2142 (SSL_SESS_CACHE_NO_INTERNAL_LOOKUP | SSL_SESS_CACHE_NO_INTERNAL_STORE) 2143 2144 // SSL_CTX_set_session_cache_mode sets the session cache mode bits for |ctx| to 2145 // |mode|. It returns the previous value. 2146 OPENSSL_EXPORT int SSL_CTX_set_session_cache_mode(SSL_CTX *ctx, int mode); 2147 2148 // SSL_CTX_get_session_cache_mode returns the session cache mode bits for 2149 // |ctx| 2150 OPENSSL_EXPORT int SSL_CTX_get_session_cache_mode(const SSL_CTX *ctx); 2151 2152 // SSL_set_session, for a client, configures |ssl| to offer to resume |session| 2153 // in the initial handshake and returns one. The caller retains ownership of 2154 // |session|. Note that configuring a session assumes the authentication in the 2155 // session is valid. For callers that wish to revalidate the session before 2156 // offering, see |SSL_SESSION_get0_peer_certificates|, 2157 // |SSL_SESSION_get0_signed_cert_timestamp_list|, and 2158 // |SSL_SESSION_get0_ocsp_response|. 2159 // 2160 // It is an error to call this function after the handshake has begun. 2161 OPENSSL_EXPORT int SSL_set_session(SSL *ssl, SSL_SESSION *session); 2162 2163 // SSL_DEFAULT_SESSION_TIMEOUT is the default lifetime, in seconds, of a 2164 // session in TLS 1.2 or earlier. This is how long we are willing to use the 2165 // secret to encrypt traffic without fresh key material. 2166 #define SSL_DEFAULT_SESSION_TIMEOUT (2 * 60 * 60) 2167 2168 // SSL_DEFAULT_SESSION_PSK_DHE_TIMEOUT is the default lifetime, in seconds, of a 2169 // session for TLS 1.3 psk_dhe_ke. This is how long we are willing to use the 2170 // secret as an authenticator. 2171 #define SSL_DEFAULT_SESSION_PSK_DHE_TIMEOUT (2 * 24 * 60 * 60) 2172 2173 // SSL_DEFAULT_SESSION_AUTH_TIMEOUT is the default non-renewable lifetime, in 2174 // seconds, of a TLS 1.3 session. This is how long we are willing to trust the 2175 // signature in the initial handshake. 2176 #define SSL_DEFAULT_SESSION_AUTH_TIMEOUT (7 * 24 * 60 * 60) 2177 2178 // SSL_CTX_set_timeout sets the lifetime, in seconds, of TLS 1.2 (or earlier) 2179 // sessions created in |ctx| to |timeout|. 2180 OPENSSL_EXPORT uint32_t SSL_CTX_set_timeout(SSL_CTX *ctx, uint32_t timeout); 2181 2182 // SSL_CTX_set_session_psk_dhe_timeout sets the lifetime, in seconds, of TLS 1.3 2183 // sessions created in |ctx| to |timeout|. 2184 OPENSSL_EXPORT void SSL_CTX_set_session_psk_dhe_timeout(SSL_CTX *ctx, 2185 uint32_t timeout); 2186 2187 // SSL_CTX_get_timeout returns the lifetime, in seconds, of TLS 1.2 (or earlier) 2188 // sessions created in |ctx|. 2189 OPENSSL_EXPORT uint32_t SSL_CTX_get_timeout(const SSL_CTX *ctx); 2190 2191 // SSL_MAX_SID_CTX_LENGTH is the maximum length of a session ID context. 2192 #define SSL_MAX_SID_CTX_LENGTH 32 2193 2194 // SSL_CTX_set_session_id_context sets |ctx|'s session ID context to |sid_ctx|. 2195 // It returns one on success and zero on error. The session ID context is an 2196 // application-defined opaque byte string. A session will not be used in a 2197 // connection without a matching session ID context. 2198 // 2199 // For a server, if |SSL_VERIFY_PEER| is enabled, it is an error to not set a 2200 // session ID context. 2201 OPENSSL_EXPORT int SSL_CTX_set_session_id_context(SSL_CTX *ctx, 2202 const uint8_t *sid_ctx, 2203 size_t sid_ctx_len); 2204 2205 // SSL_set_session_id_context sets |ssl|'s session ID context to |sid_ctx|. It 2206 // returns one on success and zero on error. See also 2207 // |SSL_CTX_set_session_id_context|. 2208 OPENSSL_EXPORT int SSL_set_session_id_context(SSL *ssl, const uint8_t *sid_ctx, 2209 size_t sid_ctx_len); 2210 2211 // SSL_get0_session_id_context returns a pointer to |ssl|'s session ID context 2212 // and sets |*out_len| to its length. It returns NULL on error. 2213 OPENSSL_EXPORT const uint8_t *SSL_get0_session_id_context(const SSL *ssl, 2214 size_t *out_len); 2215 2216 // SSL_SESSION_CACHE_MAX_SIZE_DEFAULT is the default maximum size of a session 2217 // cache. 2218 #define SSL_SESSION_CACHE_MAX_SIZE_DEFAULT (1024 * 20) 2219 2220 // SSL_CTX_sess_set_cache_size sets the maximum size of |ctx|'s internal session 2221 // cache to |size|. It returns the previous value. 2222 OPENSSL_EXPORT unsigned long SSL_CTX_sess_set_cache_size(SSL_CTX *ctx, 2223 unsigned long size); 2224 2225 // SSL_CTX_sess_get_cache_size returns the maximum size of |ctx|'s internal 2226 // session cache. 2227 OPENSSL_EXPORT unsigned long SSL_CTX_sess_get_cache_size(const SSL_CTX *ctx); 2228 2229 // SSL_CTX_sess_number returns the number of sessions in |ctx|'s internal 2230 // session cache. 2231 OPENSSL_EXPORT size_t SSL_CTX_sess_number(const SSL_CTX *ctx); 2232 2233 // SSL_CTX_add_session inserts |session| into |ctx|'s internal session cache. It 2234 // returns one on success and zero on error or if |session| is already in the 2235 // cache. The caller retains its reference to |session|. 2236 OPENSSL_EXPORT int SSL_CTX_add_session(SSL_CTX *ctx, SSL_SESSION *session); 2237 2238 // SSL_CTX_remove_session removes |session| from |ctx|'s internal session cache. 2239 // It returns one on success and zero if |session| was not in the cache. 2240 OPENSSL_EXPORT int SSL_CTX_remove_session(SSL_CTX *ctx, SSL_SESSION *session); 2241 2242 // SSL_CTX_flush_sessions removes all sessions from |ctx| which have expired as 2243 // of time |time|. If |time| is zero, all sessions are removed. 2244 OPENSSL_EXPORT void SSL_CTX_flush_sessions(SSL_CTX *ctx, uint64_t time); 2245 2246 // SSL_CTX_sess_set_new_cb sets the callback to be called when a new session is 2247 // established and ready to be cached. If the session cache is disabled (the 2248 // appropriate one of |SSL_SESS_CACHE_CLIENT| or |SSL_SESS_CACHE_SERVER| is 2249 // unset), the callback is not called. 2250 // 2251 // The callback is passed a reference to |session|. It returns one if it takes 2252 // ownership (and then calls |SSL_SESSION_free| when done) and zero otherwise. A 2253 // consumer which places |session| into an in-memory cache will likely return 2254 // one, with the cache calling |SSL_SESSION_free|. A consumer which serializes 2255 // |session| with |SSL_SESSION_to_bytes| may not need to retain |session| and 2256 // will likely return zero. Returning one is equivalent to calling 2257 // |SSL_SESSION_up_ref| and then returning zero. 2258 // 2259 // Note: For a client, the callback may be called on abbreviated handshakes if a 2260 // ticket is renewed. Further, it may not be called until some time after 2261 // |SSL_do_handshake| or |SSL_connect| completes if False Start is enabled. Thus 2262 // it's recommended to use this callback over calling |SSL_get_session| on 2263 // handshake completion. 2264 OPENSSL_EXPORT void SSL_CTX_sess_set_new_cb( 2265 SSL_CTX *ctx, int (*new_session_cb)(SSL *ssl, SSL_SESSION *session)); 2266 2267 // SSL_CTX_sess_get_new_cb returns the callback set by 2268 // |SSL_CTX_sess_set_new_cb|. 2269 OPENSSL_EXPORT int (*SSL_CTX_sess_get_new_cb(SSL_CTX *ctx))( 2270 SSL *ssl, SSL_SESSION *session); 2271 2272 // SSL_CTX_sess_set_remove_cb sets a callback which is called when a session is 2273 // removed from the internal session cache. 2274 // 2275 // TODO(davidben): What is the point of this callback? It seems useless since it 2276 // only fires on sessions in the internal cache. 2277 OPENSSL_EXPORT void SSL_CTX_sess_set_remove_cb( 2278 SSL_CTX *ctx, 2279 void (*remove_session_cb)(SSL_CTX *ctx, SSL_SESSION *session)); 2280 2281 // SSL_CTX_sess_get_remove_cb returns the callback set by 2282 // |SSL_CTX_sess_set_remove_cb|. 2283 OPENSSL_EXPORT void (*SSL_CTX_sess_get_remove_cb(SSL_CTX *ctx))( 2284 SSL_CTX *ctx, SSL_SESSION *session); 2285 2286 // SSL_CTX_sess_set_get_cb sets a callback to look up a session by ID for a 2287 // server. The callback is passed the session ID and should return a matching 2288 // |SSL_SESSION| or NULL if not found. It should set |*out_copy| to zero and 2289 // return a new reference to the session. This callback is not used for a 2290 // client. 2291 // 2292 // For historical reasons, if |*out_copy| is set to one (default), the SSL 2293 // library will take a new reference to the returned |SSL_SESSION|, expecting 2294 // the callback to return a non-owning pointer. This is not recommended. If 2295 // |ctx| and thus the callback is used on multiple threads, the session may be 2296 // removed and invalidated before the SSL library calls |SSL_SESSION_up_ref|, 2297 // whereas the callback may synchronize internally. 2298 // 2299 // To look up a session asynchronously, the callback may return 2300 // |SSL_magic_pending_session_ptr|. See the documentation for that function and 2301 // |SSL_ERROR_PENDING_SESSION|. 2302 // 2303 // If the internal session cache is enabled, the callback is only consulted if 2304 // the internal cache does not return a match. 2305 OPENSSL_EXPORT void SSL_CTX_sess_set_get_cb( 2306 SSL_CTX *ctx, SSL_SESSION *(*get_session_cb)(SSL *ssl, const uint8_t *id, 2307 int id_len, int *out_copy)); 2308 2309 // SSL_CTX_sess_get_get_cb returns the callback set by 2310 // |SSL_CTX_sess_set_get_cb|. 2311 OPENSSL_EXPORT SSL_SESSION *(*SSL_CTX_sess_get_get_cb(SSL_CTX *ctx))( 2312 SSL *ssl, const uint8_t *id, int id_len, int *out_copy); 2313 2314 // SSL_magic_pending_session_ptr returns a magic |SSL_SESSION|* which indicates 2315 // that the session isn't currently unavailable. |SSL_get_error| will then 2316 // return |SSL_ERROR_PENDING_SESSION| and the handshake can be retried later 2317 // when the lookup has completed. 2318 OPENSSL_EXPORT SSL_SESSION *SSL_magic_pending_session_ptr(void); 2319 2320 // SSL_CTX_set_resumption_across_names_enabled configures whether |ctx|, as a 2321 // TLS 1.3 server, signals its sessions are compatible with any identity in the 2322 // server certificate, e.g. all DNS names in the subjectAlternateNames list. 2323 // This does not change BoringSSL's resumption behavior, only whether it signals 2324 // this to the client. See draft-ietf-tls-cross-sni-resumption. 2325 // 2326 // When this is enabled, all identities in the server certificate should by 2327 // hosted by servers that accept TLS 1.3 tickets issued by |ctx|. The connection 2328 // will otherwise function, but performance may suffer from clients wasting 2329 // single-use tickets. 2330 OPENSSL_EXPORT void SSL_CTX_set_resumption_across_names_enabled(SSL_CTX *ctx, 2331 int enabled); 2332 2333 // SSL_set_resumption_across_names_enabled configures whether |ssl|, as a 2334 // TLS 1.3 server, signals its sessions are compatible with any identity in the 2335 // server certificate, e.g. all DNS names in the subjectAlternateNames list. 2336 // This does not change BoringSSL's resumption behavior, only whether it signals 2337 // this to the client. See draft-ietf-tls-cross-sni-resumption. 2338 // 2339 // When this is enabled, all identities in the server certificate should by 2340 // hosted by servers that accept TLS 1.3 tickets issued by |ssl|. The connection 2341 // will otherwise function, but performance may suffer from clients wasting 2342 // single-use tickets. 2343 OPENSSL_EXPORT void SSL_set_resumption_across_names_enabled(SSL *ssl, 2344 int enabled); 2345 2346 2347 // Session tickets. 2348 // 2349 // Session tickets, from RFC 5077, allow session resumption without server-side 2350 // state. The server maintains a secret ticket key and sends the client opaque 2351 // encrypted session parameters, called a ticket. When offering the session, the 2352 // client sends the ticket which the server decrypts to recover session state. 2353 // Session tickets are enabled by default but may be disabled with 2354 // |SSL_OP_NO_TICKET|. 2355 // 2356 // On the client, ticket-based sessions use the same APIs as ID-based tickets. 2357 // Callers do not need to handle them differently. 2358 // 2359 // On the server, tickets are encrypted and authenticated with a secret key. 2360 // By default, an |SSL_CTX| will manage session ticket encryption keys by 2361 // generating them internally and rotating every 48 hours. Tickets are minted 2362 // and processed transparently. The following functions may be used to configure 2363 // a persistent key or implement more custom behavior, including key rotation 2364 // and sharing keys between multiple servers in a large deployment. There are 2365 // three levels of customisation possible: 2366 // 2367 // 1) One can simply set the keys with |SSL_CTX_set_tlsext_ticket_keys|. 2368 // 2) One can configure an |EVP_CIPHER_CTX| and |HMAC_CTX| directly for 2369 // encryption and authentication. 2370 // 3) One can configure an |SSL_TICKET_AEAD_METHOD| to have more control 2371 // and the option of asynchronous decryption. 2372 // 2373 // An attacker that compromises a server's session ticket key can impersonate 2374 // the server and, prior to TLS 1.3, retroactively decrypt all application 2375 // traffic from sessions using that ticket key. Thus ticket keys must be 2376 // regularly rotated for forward secrecy. Note the default key is rotated 2377 // automatically once every 48 hours but manually configured keys are not. 2378 2379 // SSL_DEFAULT_TICKET_KEY_ROTATION_INTERVAL is the interval with which the 2380 // default session ticket encryption key is rotated, if in use. If any 2381 // non-default ticket encryption mechanism is configured, automatic rotation is 2382 // disabled. 2383 #define SSL_DEFAULT_TICKET_KEY_ROTATION_INTERVAL (2 * 24 * 60 * 60) 2384 2385 // SSL_CTX_get_tlsext_ticket_keys writes |ctx|'s session ticket key material to 2386 // |len| bytes of |out|. It returns one on success and zero if |len| is not 2387 // 48. If |out| is NULL, it returns 48 instead. 2388 OPENSSL_EXPORT int SSL_CTX_get_tlsext_ticket_keys(SSL_CTX *ctx, void *out, 2389 size_t len); 2390 2391 // SSL_CTX_set_tlsext_ticket_keys sets |ctx|'s session ticket key material to 2392 // |len| bytes of |in|. It returns one on success and zero if |len| is not 2393 // 48. If |in| is NULL, it returns 48 instead. 2394 OPENSSL_EXPORT int SSL_CTX_set_tlsext_ticket_keys(SSL_CTX *ctx, const void *in, 2395 size_t len); 2396 2397 // SSL_TICKET_KEY_NAME_LEN is the length of the key name prefix of a session 2398 // ticket. 2399 #define SSL_TICKET_KEY_NAME_LEN 16 2400 2401 // SSL_CTX_set_tlsext_ticket_key_cb sets the ticket callback to |callback| and 2402 // returns one. |callback| will be called when encrypting a new ticket and when 2403 // decrypting a ticket from the client. 2404 // 2405 // In both modes, |ctx| and |hmac_ctx| will already have been initialized with 2406 // |EVP_CIPHER_CTX_init| and |HMAC_CTX_init|, respectively. |callback| 2407 // configures |hmac_ctx| with an HMAC digest and key, and configures |ctx| 2408 // for encryption or decryption, based on the mode. 2409 // 2410 // When encrypting a new ticket, |encrypt| will be one. It writes a public 2411 // 16-byte key name to |key_name| and a fresh IV to |iv|. The output IV length 2412 // must match |EVP_CIPHER_CTX_iv_length| of the cipher selected. In this mode, 2413 // |callback| returns 1 on success, 0 to decline sending a ticket, and -1 on 2414 // error. 2415 // 2416 // When decrypting a ticket, |encrypt| will be zero. |key_name| will point to a 2417 // 16-byte key name and |iv| points to an IV. The length of the IV consumed must 2418 // match |EVP_CIPHER_CTX_iv_length| of the cipher selected. In this mode, 2419 // |callback| returns -1 to abort the handshake, 0 if the ticket key was 2420 // unrecognized, and 1 or 2 on success. If it returns 2, the ticket will be 2421 // renewed. This may be used to re-key the ticket. 2422 // 2423 // WARNING: |callback| wildly breaks the usual return value convention and is 2424 // called in two different modes. 2425 OPENSSL_EXPORT int SSL_CTX_set_tlsext_ticket_key_cb( 2426 SSL_CTX *ctx, 2427 int (*callback)(SSL *ssl, uint8_t *key_name, uint8_t *iv, 2428 EVP_CIPHER_CTX *ctx, HMAC_CTX *hmac_ctx, int encrypt)); 2429 2430 // ssl_ticket_aead_result_t enumerates the possible results from decrypting a 2431 // ticket with an |SSL_TICKET_AEAD_METHOD|. 2432 enum ssl_ticket_aead_result_t BORINGSSL_ENUM_INT { 2433 // ssl_ticket_aead_success indicates that the ticket was successfully 2434 // decrypted. 2435 ssl_ticket_aead_success, 2436 // ssl_ticket_aead_retry indicates that the operation could not be 2437 // immediately completed and must be reattempted, via |open|, at a later 2438 // point. 2439 ssl_ticket_aead_retry, 2440 // ssl_ticket_aead_ignore_ticket indicates that the ticket should be ignored 2441 // (i.e. is corrupt or otherwise undecryptable). 2442 ssl_ticket_aead_ignore_ticket, 2443 // ssl_ticket_aead_error indicates that a fatal error occured and the 2444 // handshake should be terminated. 2445 ssl_ticket_aead_error, 2446 }; 2447 2448 // ssl_ticket_aead_method_st (aka |SSL_TICKET_AEAD_METHOD|) contains methods 2449 // for encrypting and decrypting session tickets. 2450 struct ssl_ticket_aead_method_st { 2451 // max_overhead returns the maximum number of bytes of overhead that |seal| 2452 // may add. 2453 size_t (*max_overhead)(SSL *ssl); 2454 2455 // seal encrypts and authenticates |in_len| bytes from |in|, writes, at most, 2456 // |max_out_len| bytes to |out|, and puts the number of bytes written in 2457 // |*out_len|. The |in| and |out| buffers may be equal but will not otherwise 2458 // alias. It returns one on success or zero on error. If the function returns 2459 // but |*out_len| is zero, BoringSSL will skip sending a ticket. 2460 int (*seal)(SSL *ssl, uint8_t *out, size_t *out_len, size_t max_out_len, 2461 const uint8_t *in, size_t in_len); 2462 2463 // open authenticates and decrypts |in_len| bytes from |in|, writes, at most, 2464 // |max_out_len| bytes of plaintext to |out|, and puts the number of bytes 2465 // written in |*out_len|. The |in| and |out| buffers may be equal but will 2466 // not otherwise alias. See |ssl_ticket_aead_result_t| for details of the 2467 // return values. In the case that a retry is indicated, the caller should 2468 // arrange for the high-level operation on |ssl| to be retried when the 2469 // operation is completed, which will result in another call to |open|. 2470 enum ssl_ticket_aead_result_t (*open)(SSL *ssl, uint8_t *out, size_t *out_len, 2471 size_t max_out_len, const uint8_t *in, 2472 size_t in_len); 2473 }; 2474 2475 // SSL_CTX_set_ticket_aead_method configures a custom ticket AEAD method table 2476 // on |ctx|. |aead_method| must remain valid for the lifetime of |ctx|. 2477 OPENSSL_EXPORT void SSL_CTX_set_ticket_aead_method( 2478 SSL_CTX *ctx, const SSL_TICKET_AEAD_METHOD *aead_method); 2479 2480 // SSL_process_tls13_new_session_ticket processes an unencrypted TLS 1.3 2481 // NewSessionTicket message from |buf| and returns a resumable |SSL_SESSION|, 2482 // or NULL on error. The caller takes ownership of the returned session and 2483 // must call |SSL_SESSION_free| to free it. 2484 // 2485 // |buf| contains |buf_len| bytes that represents a complete NewSessionTicket 2486 // message including its header, i.e., one byte for the type (0x04) and three 2487 // bytes for the length. |buf| must contain only one such message. 2488 // 2489 // This function may be used to process NewSessionTicket messages in TLS 1.3 2490 // clients that are handling the record layer externally. 2491 OPENSSL_EXPORT SSL_SESSION *SSL_process_tls13_new_session_ticket( 2492 SSL *ssl, const uint8_t *buf, size_t buf_len); 2493 2494 // SSL_CTX_set_num_tickets configures |ctx| to send |num_tickets| immediately 2495 // after a successful TLS 1.3 handshake as a server. It returns one. Large 2496 // values of |num_tickets| will be capped within the library. 2497 // 2498 // By default, BoringSSL sends two tickets. 2499 OPENSSL_EXPORT int SSL_CTX_set_num_tickets(SSL_CTX *ctx, size_t num_tickets); 2500 2501 // SSL_CTX_get_num_tickets returns the number of tickets |ctx| will send 2502 // immediately after a successful TLS 1.3 handshake as a server. 2503 OPENSSL_EXPORT size_t SSL_CTX_get_num_tickets(const SSL_CTX *ctx); 2504 2505 2506 // Diffie-Hellman groups and ephemeral key exchanges. 2507 // 2508 // Most TLS handshakes (ECDHE cipher suites in TLS 1.2, and all supported TLS 2509 // 1.3 modes) incorporate an ephemeral key exchange, most commonly using 2510 // Elliptic Curve Diffie-Hellman (ECDH), as described in RFC 8422. The key 2511 // exchange algorithm is negotiated separately from the cipher suite, using 2512 // NamedGroup values, which define Diffie-Hellman groups. 2513 // 2514 // Historically, these values were known as "curves", in reference to ECDH, and 2515 // some APIs refer to the original name. RFC 7919 renamed them to "groups" in 2516 // reference to Diffie-Hellman in general. These values are also used to select 2517 // experimental post-quantum KEMs. Though not Diffie-Hellman groups, KEMs can 2518 // fill a similar role in TLS, so they use the same codepoints. 2519 // 2520 // In TLS 1.2, the ECDH values also negotiate elliptic curves used in ECDSA. In 2521 // TLS 1.3 and later, ECDSA curves are part of the signature algorithm. See 2522 // |SSL_SIGN_*|. 2523 2524 // SSL_GROUP_* define TLS group IDs. 2525 #define SSL_GROUP_SECP256R1 23 2526 #define SSL_GROUP_SECP384R1 24 2527 #define SSL_GROUP_SECP521R1 25 2528 #define SSL_GROUP_X25519 29 2529 #define SSL_GROUP_X25519_MLKEM768 0x11ec 2530 #define SSL_GROUP_X25519_KYBER768_DRAFT00 0x6399 2531 2532 // SSL_CTX_set1_group_ids sets the preferred groups for |ctx| to |group_ids|. 2533 // Each element of |group_ids| should be one of the |SSL_GROUP_*| constants. It 2534 // returns one on success and zero on failure. 2535 OPENSSL_EXPORT int SSL_CTX_set1_group_ids(SSL_CTX *ctx, 2536 const uint16_t *group_ids, 2537 size_t num_group_ids); 2538 2539 // SSL_set1_group_ids sets the preferred groups for |ssl| to |group_ids|. Each 2540 // element of |group_ids| should be one of the |SSL_GROUP_*| constants. It 2541 // returns one on success and zero on failure. 2542 OPENSSL_EXPORT int SSL_set1_group_ids(SSL *ssl, const uint16_t *group_ids, 2543 size_t num_group_ids); 2544 2545 // SSL_get_group_id returns the ID of the group used by |ssl|'s most recently 2546 // completed handshake, or 0 if not applicable. 2547 OPENSSL_EXPORT uint16_t SSL_get_group_id(const SSL *ssl); 2548 2549 // SSL_get_group_name returns a human-readable name for the group specified by 2550 // the given TLS group ID, or NULL if the group is unknown. 2551 OPENSSL_EXPORT const char *SSL_get_group_name(uint16_t group_id); 2552 2553 // SSL_get_all_group_names outputs a list of possible strings 2554 // |SSL_get_group_name| may return in this version of BoringSSL. It writes at 2555 // most |max_out| entries to |out| and returns the total number it would have 2556 // written, if |max_out| had been large enough. |max_out| may be initially set 2557 // to zero to size the output. 2558 // 2559 // This function is only intended to help initialize tables in callers that want 2560 // possible strings pre-declared. This list would not be suitable to set a list 2561 // of supported features. It is in no particular order, and may contain 2562 // placeholder, experimental, or deprecated values that do not apply to every 2563 // caller. Future versions of BoringSSL may also return strings not in this 2564 // list, so this does not apply if, say, sending strings across services. 2565 OPENSSL_EXPORT size_t SSL_get_all_group_names(const char **out, size_t max_out); 2566 2567 // The following APIs also configure Diffie-Hellman groups, but use |NID_*| 2568 // constants instead of |SSL_GROUP_*| constants. These are provided for OpenSSL 2569 // compatibility. Where NIDs are unstable constants specific to OpenSSL and 2570 // BoringSSL, group IDs are defined by the TLS protocol. Prefer the group ID 2571 // representation if storing persistently, or exporting to another process or 2572 // library. 2573 2574 // SSL_CTX_set1_groups sets the preferred groups for |ctx| to be |groups|. Each 2575 // element of |groups| should be a |NID_*| constant from nid.h. It returns one 2576 // on success and zero on failure. 2577 OPENSSL_EXPORT int SSL_CTX_set1_groups(SSL_CTX *ctx, const int *groups, 2578 size_t num_groups); 2579 2580 // SSL_set1_groups sets the preferred groups for |ssl| to be |groups|. Each 2581 // element of |groups| should be a |NID_*| constant from nid.h. It returns one 2582 // on success and zero on failure. 2583 OPENSSL_EXPORT int SSL_set1_groups(SSL *ssl, const int *groups, 2584 size_t num_groups); 2585 2586 // SSL_CTX_set1_groups_list decodes |groups| as a colon-separated list of group 2587 // names (e.g. "X25519" or "P-256") and sets |ctx|'s preferred groups to the 2588 // result. It returns one on success and zero on failure. 2589 OPENSSL_EXPORT int SSL_CTX_set1_groups_list(SSL_CTX *ctx, const char *groups); 2590 2591 // SSL_set1_groups_list decodes |groups| as a colon-separated list of group 2592 // names (e.g. "X25519" or "P-256") and sets |ssl|'s preferred groups to the 2593 // result. It returns one on success and zero on failure. 2594 OPENSSL_EXPORT int SSL_set1_groups_list(SSL *ssl, const char *groups); 2595 2596 // SSL_get_negotiated_group returns the NID of the group used by |ssl|'s most 2597 // recently completed handshake, or |NID_undef| if not applicable. 2598 OPENSSL_EXPORT int SSL_get_negotiated_group(const SSL *ssl); 2599 2600 2601 // Certificate verification. 2602 // 2603 // SSL may authenticate either endpoint with an X.509 certificate. Typically 2604 // this is used to authenticate the server to the client. These functions 2605 // configure certificate verification. 2606 // 2607 // WARNING: By default, certificate verification errors on a client are not 2608 // fatal. See |SSL_VERIFY_NONE| This may be configured with 2609 // |SSL_CTX_set_verify|. 2610 // 2611 // By default clients are anonymous but a server may request a certificate from 2612 // the client by setting |SSL_VERIFY_PEER|. 2613 // 2614 // Many of these functions use OpenSSL's legacy X.509 stack which is 2615 // underdocumented and deprecated, but the replacement isn't ready yet. For 2616 // now, consumers may use the existing stack or bypass it by performing 2617 // certificate verification externally. This may be done with 2618 // |SSL_CTX_set_cert_verify_callback| or by extracting the chain with 2619 // |SSL_get_peer_cert_chain| after the handshake. In the future, functions will 2620 // be added to use the SSL stack without dependency on any part of the legacy 2621 // X.509 and ASN.1 stack. 2622 // 2623 // To augment certificate verification, a client may also enable OCSP stapling 2624 // (RFC 6066) and Certificate Transparency (RFC 6962) extensions. 2625 2626 // SSL_VERIFY_NONE, on a client, verifies the server certificate but does not 2627 // make errors fatal. The result may be checked with |SSL_get_verify_result|. On 2628 // a server it does not request a client certificate. This is the default. 2629 #define SSL_VERIFY_NONE 0x00 2630 2631 // SSL_VERIFY_PEER, on a client, makes server certificate errors fatal. On a 2632 // server it requests a client certificate and makes errors fatal. However, 2633 // anonymous clients are still allowed. See 2634 // |SSL_VERIFY_FAIL_IF_NO_PEER_CERT|. 2635 #define SSL_VERIFY_PEER 0x01 2636 2637 // SSL_VERIFY_FAIL_IF_NO_PEER_CERT configures a server to reject connections if 2638 // the client declines to send a certificate. This flag must be used together 2639 // with |SSL_VERIFY_PEER|, otherwise it won't work. 2640 #define SSL_VERIFY_FAIL_IF_NO_PEER_CERT 0x02 2641 2642 // SSL_CTX_set_verify configures certificate verification behavior. |mode| is 2643 // one of the |SSL_VERIFY_*| values defined above. |callback| should be NULL. 2644 // 2645 // If |callback| is non-NULL, it is called as in |X509_STORE_CTX_set_verify_cb|, 2646 // which is a deprecated and fragile mechanism to run the default certificate 2647 // verification process, but suppress individual errors in it. See 2648 // |X509_STORE_CTX_set_verify_cb| for details, If set, the callback may use 2649 // |SSL_get_ex_data_X509_STORE_CTX_idx| with |X509_STORE_CTX_get_ex_data| to 2650 // look up the |SSL| from |store_ctx|. 2651 // 2652 // WARNING: |callback| is not suitable for implementing custom certificate 2653 // check, accepting all certificates, or extracting the certificate after 2654 // verification. It does not replace the default process and is called multiple 2655 // times throughout that process. It is also very difficult to implement this 2656 // callback safely, without inadvertently relying on implementation details or 2657 // making incorrect assumptions about when the callback is called. 2658 // 2659 // Instead, use |SSL_CTX_set_custom_verify| or 2660 // |SSL_CTX_set_cert_verify_callback| to customize certificate verification. 2661 // Those callbacks can inspect the peer-sent chain, call |X509_verify_cert| and 2662 // inspect the result, or perform other operations more straightforwardly. 2663 OPENSSL_EXPORT void SSL_CTX_set_verify( 2664 SSL_CTX *ctx, int mode, int (*callback)(int ok, X509_STORE_CTX *store_ctx)); 2665 2666 // SSL_set_verify configures certificate verification behavior. |mode| is one of 2667 // the |SSL_VERIFY_*| values defined above. |callback| should be NULL. 2668 // 2669 // If |callback| is non-NULL, it is called as in |X509_STORE_CTX_set_verify_cb|, 2670 // which is a deprecated and fragile mechanism to run the default certificate 2671 // verification process, but suppress individual errors in it. See 2672 // |X509_STORE_CTX_set_verify_cb| for details, If set, the callback may use 2673 // |SSL_get_ex_data_X509_STORE_CTX_idx| with |X509_STORE_CTX_get_ex_data| to 2674 // look up the |SSL| from |store_ctx|. 2675 // 2676 // WARNING: |callback| is not suitable for implementing custom certificate 2677 // check, accepting all certificates, or extracting the certificate after 2678 // verification. It does not replace the default process and is called multiple 2679 // times throughout that process. It is also very difficult to implement this 2680 // callback safely, without inadvertently relying on implementation details or 2681 // making incorrect assumptions about when the callback is called. 2682 // 2683 // Instead, use |SSL_set_custom_verify| or |SSL_set_cert_verify_callback| to 2684 // customize certificate verification. Those callbacks can inspect the peer-sent 2685 // chain, call |X509_verify_cert| and inspect the result, or perform other 2686 // operations more straightforwardly. 2687 OPENSSL_EXPORT void SSL_set_verify(SSL *ssl, int mode, 2688 int (*callback)(int ok, 2689 X509_STORE_CTX *store_ctx)); 2690 2691 enum ssl_verify_result_t BORINGSSL_ENUM_INT { 2692 ssl_verify_ok, 2693 ssl_verify_invalid, 2694 ssl_verify_retry, 2695 }; 2696 2697 // SSL_CTX_set_custom_verify configures certificate verification. |mode| is one 2698 // of the |SSL_VERIFY_*| values defined above. |callback| performs the 2699 // certificate verification. 2700 // 2701 // The callback may call |SSL_get0_peer_certificates| for the certificate chain 2702 // to validate. The callback should return |ssl_verify_ok| if the certificate is 2703 // valid. If the certificate is invalid, the callback should return 2704 // |ssl_verify_invalid| and optionally set |*out_alert| to an alert to send to 2705 // the peer. Some useful alerts include |SSL_AD_CERTIFICATE_EXPIRED|, 2706 // |SSL_AD_CERTIFICATE_REVOKED|, |SSL_AD_UNKNOWN_CA|, |SSL_AD_BAD_CERTIFICATE|, 2707 // |SSL_AD_CERTIFICATE_UNKNOWN|, and |SSL_AD_INTERNAL_ERROR|. See RFC 5246 2708 // section 7.2.2 for their precise meanings. If unspecified, 2709 // |SSL_AD_CERTIFICATE_UNKNOWN| will be sent by default. 2710 // 2711 // To verify a certificate asynchronously, the callback may return 2712 // |ssl_verify_retry|. The handshake will then pause with |SSL_get_error| 2713 // returning |SSL_ERROR_WANT_CERTIFICATE_VERIFY|. 2714 OPENSSL_EXPORT void SSL_CTX_set_custom_verify( 2715 SSL_CTX *ctx, int mode, 2716 enum ssl_verify_result_t (*callback)(SSL *ssl, uint8_t *out_alert)); 2717 2718 // SSL_set_custom_verify behaves like |SSL_CTX_set_custom_verify| but configures 2719 // an individual |SSL|. 2720 OPENSSL_EXPORT void SSL_set_custom_verify( 2721 SSL *ssl, int mode, 2722 enum ssl_verify_result_t (*callback)(SSL *ssl, uint8_t *out_alert)); 2723 2724 // SSL_CTX_get_verify_mode returns |ctx|'s verify mode, set by 2725 // |SSL_CTX_set_verify|. 2726 OPENSSL_EXPORT int SSL_CTX_get_verify_mode(const SSL_CTX *ctx); 2727 2728 // SSL_get_verify_mode returns |ssl|'s verify mode, set by |SSL_CTX_set_verify| 2729 // or |SSL_set_verify|. It returns -1 on error. 2730 OPENSSL_EXPORT int SSL_get_verify_mode(const SSL *ssl); 2731 2732 // SSL_CTX_get_verify_callback returns the callback set by 2733 // |SSL_CTX_set_verify|. 2734 OPENSSL_EXPORT int (*SSL_CTX_get_verify_callback(const SSL_CTX *ctx))( 2735 int ok, X509_STORE_CTX *store_ctx); 2736 2737 // SSL_get_verify_callback returns the callback set by |SSL_CTX_set_verify| or 2738 // |SSL_set_verify|. 2739 OPENSSL_EXPORT int (*SSL_get_verify_callback(const SSL *ssl))( 2740 int ok, X509_STORE_CTX *store_ctx); 2741 2742 // SSL_set1_host sets a DNS name that will be required to be present in the 2743 // verified leaf certificate. It returns one on success and zero on error. 2744 // 2745 // Note: unless _some_ name checking is performed, certificate validation is 2746 // ineffective. Simply checking that a host has some certificate from a CA is 2747 // rarely meaningful—you have to check that the CA believed that the host was 2748 // who you expect to be talking to. 2749 // 2750 // By default, both subject alternative names and the subject's common name 2751 // attribute are checked. The latter has long been deprecated, so callers should 2752 // call |SSL_set_hostflags| with |X509_CHECK_FLAG_NEVER_CHECK_SUBJECT| to use 2753 // the standard behavior. https://crbug.com/boringssl/464 tracks fixing the 2754 // default. 2755 OPENSSL_EXPORT int SSL_set1_host(SSL *ssl, const char *hostname); 2756 2757 // SSL_set_hostflags calls |X509_VERIFY_PARAM_set_hostflags| on the 2758 // |X509_VERIFY_PARAM| associated with this |SSL*|. |flags| should be some 2759 // combination of the |X509_CHECK_*| constants. 2760 OPENSSL_EXPORT void SSL_set_hostflags(SSL *ssl, unsigned flags); 2761 2762 // SSL_CTX_set_verify_depth sets the maximum depth of a certificate chain 2763 // accepted in verification. This count excludes both the target certificate and 2764 // the trust anchor (root certificate). 2765 OPENSSL_EXPORT void SSL_CTX_set_verify_depth(SSL_CTX *ctx, int depth); 2766 2767 // SSL_set_verify_depth sets the maximum depth of a certificate chain accepted 2768 // in verification. This count excludes both the target certificate and the 2769 // trust anchor (root certificate). 2770 OPENSSL_EXPORT void SSL_set_verify_depth(SSL *ssl, int depth); 2771 2772 // SSL_CTX_get_verify_depth returns the maximum depth of a certificate accepted 2773 // in verification. 2774 OPENSSL_EXPORT int SSL_CTX_get_verify_depth(const SSL_CTX *ctx); 2775 2776 // SSL_get_verify_depth returns the maximum depth of a certificate accepted in 2777 // verification. 2778 OPENSSL_EXPORT int SSL_get_verify_depth(const SSL *ssl); 2779 2780 // SSL_CTX_set1_param sets verification parameters from |param|. It returns one 2781 // on success and zero on failure. The caller retains ownership of |param|. 2782 OPENSSL_EXPORT int SSL_CTX_set1_param(SSL_CTX *ctx, 2783 const X509_VERIFY_PARAM *param); 2784 2785 // SSL_set1_param sets verification parameters from |param|. It returns one on 2786 // success and zero on failure. The caller retains ownership of |param|. 2787 OPENSSL_EXPORT int SSL_set1_param(SSL *ssl, const X509_VERIFY_PARAM *param); 2788 2789 // SSL_CTX_get0_param returns |ctx|'s |X509_VERIFY_PARAM| for certificate 2790 // verification. The caller must not release the returned pointer but may call 2791 // functions on it to configure it. 2792 OPENSSL_EXPORT X509_VERIFY_PARAM *SSL_CTX_get0_param(SSL_CTX *ctx); 2793 2794 // SSL_get0_param returns |ssl|'s |X509_VERIFY_PARAM| for certificate 2795 // verification. The caller must not release the returned pointer but may call 2796 // functions on it to configure it. 2797 OPENSSL_EXPORT X509_VERIFY_PARAM *SSL_get0_param(SSL *ssl); 2798 2799 // SSL_CTX_set_purpose sets |ctx|'s |X509_VERIFY_PARAM|'s 'purpose' parameter to 2800 // |purpose|. It returns one on success and zero on error. 2801 OPENSSL_EXPORT int SSL_CTX_set_purpose(SSL_CTX *ctx, int purpose); 2802 2803 // SSL_set_purpose sets |ssl|'s |X509_VERIFY_PARAM|'s 'purpose' parameter to 2804 // |purpose|. It returns one on success and zero on error. 2805 OPENSSL_EXPORT int SSL_set_purpose(SSL *ssl, int purpose); 2806 2807 // SSL_CTX_set_trust sets |ctx|'s |X509_VERIFY_PARAM|'s 'trust' parameter to 2808 // |trust|. It returns one on success and zero on error. 2809 OPENSSL_EXPORT int SSL_CTX_set_trust(SSL_CTX *ctx, int trust); 2810 2811 // SSL_set_trust sets |ssl|'s |X509_VERIFY_PARAM|'s 'trust' parameter to 2812 // |trust|. It returns one on success and zero on error. 2813 OPENSSL_EXPORT int SSL_set_trust(SSL *ssl, int trust); 2814 2815 // SSL_CTX_set_cert_store sets |ctx|'s certificate store to |store|. It takes 2816 // ownership of |store|. The store is used for certificate verification. 2817 // 2818 // The store is also used for the auto-chaining feature, but this is deprecated. 2819 // See also |SSL_MODE_NO_AUTO_CHAIN|. 2820 OPENSSL_EXPORT void SSL_CTX_set_cert_store(SSL_CTX *ctx, X509_STORE *store); 2821 2822 // SSL_CTX_get_cert_store returns |ctx|'s certificate store. 2823 OPENSSL_EXPORT X509_STORE *SSL_CTX_get_cert_store(const SSL_CTX *ctx); 2824 2825 // SSL_CTX_set_default_verify_paths calls |X509_STORE_set_default_paths| on 2826 // |ctx|'s store. See that function for details. 2827 // 2828 // Using this function is not recommended. In OpenSSL, these defaults are 2829 // determined by OpenSSL's install prefix. There is no corresponding concept for 2830 // BoringSSL. Future versions of BoringSSL may change or remove this 2831 // functionality. 2832 OPENSSL_EXPORT int SSL_CTX_set_default_verify_paths(SSL_CTX *ctx); 2833 2834 // SSL_CTX_load_verify_locations calls |X509_STORE_load_locations| on |ctx|'s 2835 // store. See that function for details. 2836 OPENSSL_EXPORT int SSL_CTX_load_verify_locations(SSL_CTX *ctx, 2837 const char *ca_file, 2838 const char *ca_dir); 2839 2840 // SSL_get_verify_result returns the result of certificate verification. It is 2841 // either |X509_V_OK| or a |X509_V_ERR_*| value. 2842 OPENSSL_EXPORT long SSL_get_verify_result(const SSL *ssl); 2843 2844 // SSL_alert_from_verify_result returns the SSL alert code, such as 2845 // |SSL_AD_CERTIFICATE_EXPIRED|, that corresponds to an |X509_V_ERR_*| value. 2846 // The return value is always an alert, even when |result| is |X509_V_OK|. 2847 OPENSSL_EXPORT int SSL_alert_from_verify_result(long result); 2848 2849 // SSL_get_ex_data_X509_STORE_CTX_idx returns the ex_data index used to look up 2850 // the |SSL| associated with an |X509_STORE_CTX| in the verify callback. 2851 OPENSSL_EXPORT int SSL_get_ex_data_X509_STORE_CTX_idx(void); 2852 2853 // SSL_CTX_set_cert_verify_callback sets a custom callback to be called on 2854 // certificate verification rather than |X509_verify_cert|. |store_ctx| contains 2855 // the verification parameters. The callback should return one on success and 2856 // zero on fatal error. It may use |X509_STORE_CTX_set_error| to set a 2857 // verification result. 2858 // 2859 // The callback may use |SSL_get_ex_data_X509_STORE_CTX_idx| to recover the 2860 // |SSL| object from |store_ctx|. 2861 OPENSSL_EXPORT void SSL_CTX_set_cert_verify_callback( 2862 SSL_CTX *ctx, int (*callback)(X509_STORE_CTX *store_ctx, void *arg), 2863 void *arg); 2864 2865 // SSL_enable_signed_cert_timestamps causes |ssl| (which must be the client end 2866 // of a connection) to request SCTs from the server. See 2867 // https://tools.ietf.org/html/rfc6962. 2868 // 2869 // Call |SSL_get0_signed_cert_timestamp_list| to recover the SCT after the 2870 // handshake. 2871 OPENSSL_EXPORT void SSL_enable_signed_cert_timestamps(SSL *ssl); 2872 2873 // SSL_CTX_enable_signed_cert_timestamps enables SCT requests on all client SSL 2874 // objects created from |ctx|. 2875 // 2876 // Call |SSL_get0_signed_cert_timestamp_list| to recover the SCT after the 2877 // handshake. 2878 OPENSSL_EXPORT void SSL_CTX_enable_signed_cert_timestamps(SSL_CTX *ctx); 2879 2880 // SSL_enable_ocsp_stapling causes |ssl| (which must be the client end of a 2881 // connection) to request a stapled OCSP response from the server. 2882 // 2883 // Call |SSL_get0_ocsp_response| to recover the OCSP response after the 2884 // handshake. 2885 OPENSSL_EXPORT void SSL_enable_ocsp_stapling(SSL *ssl); 2886 2887 // SSL_CTX_enable_ocsp_stapling enables OCSP stapling on all client SSL objects 2888 // created from |ctx|. 2889 // 2890 // Call |SSL_get0_ocsp_response| to recover the OCSP response after the 2891 // handshake. 2892 OPENSSL_EXPORT void SSL_CTX_enable_ocsp_stapling(SSL_CTX *ctx); 2893 2894 // SSL_CTX_set0_verify_cert_store sets an |X509_STORE| that will be used 2895 // exclusively for certificate verification and returns one. Ownership of 2896 // |store| is transferred to the |SSL_CTX|. 2897 OPENSSL_EXPORT int SSL_CTX_set0_verify_cert_store(SSL_CTX *ctx, 2898 X509_STORE *store); 2899 2900 // SSL_CTX_set1_verify_cert_store sets an |X509_STORE| that will be used 2901 // exclusively for certificate verification and returns one. An additional 2902 // reference to |store| will be taken. 2903 OPENSSL_EXPORT int SSL_CTX_set1_verify_cert_store(SSL_CTX *ctx, 2904 X509_STORE *store); 2905 2906 // SSL_set0_verify_cert_store sets an |X509_STORE| that will be used 2907 // exclusively for certificate verification and returns one. Ownership of 2908 // |store| is transferred to the |SSL|. 2909 OPENSSL_EXPORT int SSL_set0_verify_cert_store(SSL *ssl, X509_STORE *store); 2910 2911 // SSL_set1_verify_cert_store sets an |X509_STORE| that will be used 2912 // exclusively for certificate verification and returns one. An additional 2913 // reference to |store| will be taken. 2914 OPENSSL_EXPORT int SSL_set1_verify_cert_store(SSL *ssl, X509_STORE *store); 2915 2916 // SSL_CTX_set_verify_algorithm_prefs configures |ctx| to use |prefs| as the 2917 // preference list when verifying signatures from the peer's long-term key in 2918 // TLS 1.2 and up. It returns one on zero on error. |prefs| should not include 2919 // the internal-only TLS 1.0 value |SSL_SIGN_RSA_PKCS1_MD5_SHA1|. 2920 // 2921 // This setting is not used in TLS 1.0 and 1.1. Those protocols always sign a 2922 // hardcoded algorithm (an MD5/SHA-1 concatenation for RSA, and SHA-1 for 2923 // ECDSA). BoringSSL will accept those algorithms if and only if those versions 2924 // are used. To disable them, set the minimum version to TLS 1.2 (default) or 2925 // higher. 2926 OPENSSL_EXPORT int SSL_CTX_set_verify_algorithm_prefs(SSL_CTX *ctx, 2927 const uint16_t *prefs, 2928 size_t num_prefs); 2929 2930 // SSL_set_verify_algorithm_prefs configures |ssl| to use |prefs| as the 2931 // preference list when verifying signatures from the peer's long-term key in 2932 // TLS 1.2 and up. It returns one on zero on error. |prefs| should not include 2933 // the internal-only TLS 1.0 value |SSL_SIGN_RSA_PKCS1_MD5_SHA1|. 2934 // 2935 // This setting is not used in TLS 1.0 and 1.1. Those protocols always sign a 2936 // hardcoded algorithm (an MD5/SHA-1 concatenation for RSA, and SHA-1 for 2937 // ECDSA). BoringSSL will accept those algorithms if and only if those versions 2938 // are used. To disable them, set the minimum version to TLS 1.2 (default) or 2939 // higher. 2940 OPENSSL_EXPORT int SSL_set_verify_algorithm_prefs(SSL *ssl, 2941 const uint16_t *prefs, 2942 size_t num_prefs); 2943 2944 2945 // Certificate authorities. 2946 // 2947 // TLS implementations can send a list of supported certificate authorities to 2948 // guide the peer in selecting a certificate. This was originally defined for 2949 // servers requesting client certificates, but TLS 1.3 generalized it to server 2950 // certificates with the certificate_authorities extension. 2951 // 2952 // The following functions can be used to configure and query this list. They do 2953 // not directly impact certificate verification, only the list of certificate 2954 // authorities sent to the peer. 2955 2956 // SSL_set_client_CA_list sets |ssl|'s client certificate CA list to 2957 // |name_list|. It takes ownership of |name_list|. 2958 OPENSSL_EXPORT void SSL_set_client_CA_list(SSL *ssl, 2959 STACK_OF(X509_NAME) *name_list); 2960 2961 // SSL_CTX_set_client_CA_list sets |ctx|'s client certificate CA list to 2962 // |name_list|. It takes ownership of |name_list|. 2963 OPENSSL_EXPORT void SSL_CTX_set_client_CA_list(SSL_CTX *ctx, 2964 STACK_OF(X509_NAME) *name_list); 2965 2966 // SSL_set0_client_CAs sets |ssl|'s client certificate CA list to |name_list|, 2967 // which should contain DER-encoded distinguished names (RFC 5280). It takes 2968 // ownership of |name_list|. 2969 OPENSSL_EXPORT void SSL_set0_client_CAs(SSL *ssl, 2970 STACK_OF(CRYPTO_BUFFER) *name_list); 2971 2972 // SSL_set0_CA_names sets |ssl|'s CA name list for the certificate authorities 2973 // extension to |name_list|, which should contain DER-encoded distinguished 2974 // names (RFC 5280). It takes ownership of |name_list|. 2975 OPENSSL_EXPORT void SSL_set0_CA_names(SSL *ssl, 2976 STACK_OF(CRYPTO_BUFFER) *name_list); 2977 2978 // SSL_CTX_set0_client_CAs sets |ctx|'s client certificate CA list to 2979 // |name_list|, which should contain DER-encoded distinguished names (RFC 5280). 2980 // It takes ownership of |name_list|. 2981 OPENSSL_EXPORT void SSL_CTX_set0_client_CAs(SSL_CTX *ctx, 2982 STACK_OF(CRYPTO_BUFFER) *name_list); 2983 2984 // SSL_get_client_CA_list returns |ssl|'s client certificate CA list. If |ssl| 2985 // has not been configured as a client, this is the list configured by 2986 // |SSL_CTX_set_client_CA_list|. 2987 // 2988 // If configured as a client, it returns the client certificate CA list sent by 2989 // the server. In this mode, the behavior is undefined except during the 2990 // callbacks set by |SSL_CTX_set_cert_cb| and |SSL_CTX_set_client_cert_cb| or 2991 // when the handshake is paused because of them. 2992 OPENSSL_EXPORT STACK_OF(X509_NAME) *SSL_get_client_CA_list(const SSL *ssl); 2993 2994 // SSL_get0_server_requested_CAs returns the CAs sent by a server to guide a 2995 // client in certificate selection. They are a series of DER-encoded X.509 2996 // names. This function may only be called during a callback set by 2997 // |SSL_CTX_set_cert_cb| or when the handshake is paused because of it. 2998 // 2999 // The returned stack is owned by |ssl|, as are its contents. It should not be 3000 // used past the point where the handshake is restarted after the callback. 3001 OPENSSL_EXPORT const STACK_OF(CRYPTO_BUFFER) *SSL_get0_server_requested_CAs( 3002 const SSL *ssl); 3003 3004 // SSL_CTX_get_client_CA_list returns |ctx|'s client certificate CA list. 3005 OPENSSL_EXPORT STACK_OF(X509_NAME) *SSL_CTX_get_client_CA_list( 3006 const SSL_CTX *ctx); 3007 3008 // SSL_add_client_CA appends |x509|'s subject to the client certificate CA list. 3009 // It returns one on success or zero on error. The caller retains ownership of 3010 // |x509|. 3011 OPENSSL_EXPORT int SSL_add_client_CA(SSL *ssl, X509 *x509); 3012 3013 // SSL_CTX_add_client_CA appends |x509|'s subject to the client certificate CA 3014 // list. It returns one on success or zero on error. The caller retains 3015 // ownership of |x509|. 3016 OPENSSL_EXPORT int SSL_CTX_add_client_CA(SSL_CTX *ctx, X509 *x509); 3017 3018 // SSL_load_client_CA_file opens |file| and reads PEM-encoded certificates from 3019 // it. It returns a newly-allocated stack of the certificate subjects or NULL 3020 // on error. Duplicates in |file| are ignored. 3021 OPENSSL_EXPORT STACK_OF(X509_NAME) *SSL_load_client_CA_file(const char *file); 3022 3023 // SSL_dup_CA_list makes a deep copy of |list|. It returns the new list on 3024 // success or NULL on allocation error. 3025 OPENSSL_EXPORT STACK_OF(X509_NAME) *SSL_dup_CA_list(STACK_OF(X509_NAME) *list); 3026 3027 // SSL_add_file_cert_subjects_to_stack behaves like |SSL_load_client_CA_file| 3028 // but appends the result to |out|. It returns one on success or zero on 3029 // error. 3030 OPENSSL_EXPORT int SSL_add_file_cert_subjects_to_stack(STACK_OF(X509_NAME) *out, 3031 const char *file); 3032 3033 // SSL_add_bio_cert_subjects_to_stack behaves like 3034 // |SSL_add_file_cert_subjects_to_stack| but reads from |bio|. 3035 OPENSSL_EXPORT int SSL_add_bio_cert_subjects_to_stack(STACK_OF(X509_NAME) *out, 3036 BIO *bio); 3037 3038 3039 // Trust Anchor Identifiers. 3040 // 3041 // The trust_anchors extension, like certificate_authorities, allows clients to 3042 // communicate supported CAs to guide server certificate selection, or vice 3043 // versa. It better supports larger PKIs by referring to CAs by short "trust 3044 // anchor IDs" and, in the server certificate direction, allowing a client to 3045 // advertise only a subset of its full list, with DNS hinting and a retry 3046 // mechanism to manage the subset. 3047 // 3048 // See https://datatracker.ietf.org/doc/draft-ietf-tls-trust-anchor-ids/ 3049 // 3050 // BoringSSL currently only implements this for server certificates, and not yet 3051 // client certificates. 3052 3053 // SSL_CREDENTIAL_set1_trust_anchor_id sets |cred|'s trust anchor ID to |id|, or 3054 // clears it if |id_len| is zero. It returns one on success and zero on 3055 // error. If not clearing, |id| must be in binary format (Section 3 of 3056 // draft-ietf-tls-trust-anchor-ids-00) of length |id_len|, and describe the 3057 // issuer of the final certificate in |cred|'s certificate chain. 3058 // 3059 // Additionally, |cred| must enable issuer matching (see 3060 // SSL_CREDENTIAL_set_must_match_issuer|) for this value to take effect. 3061 // 3062 // For better extensibility, callers are recommended to configure this 3063 // information with a CertificatePropertyList instead. See 3064 // |SSL_CREDENTIAL_set1_certificate_properties|. 3065 OPENSSL_EXPORT int SSL_CREDENTIAL_set1_trust_anchor_id(SSL_CREDENTIAL *cred, 3066 const uint8_t *id, 3067 size_t id_len); 3068 3069 // SSL_CTX_set1_requested_trust_anchors configures |ctx| to request a 3070 // certificate issued by one of the trust anchors in |ids|. It returns one on 3071 // success and zero on error. |ids| must be a list of trust anchor IDs in 3072 // wire-format (a series of non-empty, 8-bit length-prefixed strings). 3073 // 3074 // The list may describe application's full list of supported trust anchors, or 3075 // a, possibly empty, subset. Applications can select this subset using 3076 // out-of-band information, such as the DNS hint in Section 5 of 3077 // draft-ietf-tls-trust-anchor-ids-00. Client applications sending a subset 3078 // should use |SSL_get0_peer_available_trust_anchors| to implement the retry 3079 // flow from Section 4.3 of draft-ietf-tls-trust-anchor-ids-00. 3080 // 3081 // If empty (|ids_len| is zero), the trust_anchors extension will still be sent 3082 // in ClientHello. This may be used by a client application to signal support 3083 // for the retry flow without requesting specific trust anchors. 3084 // 3085 // This function does not directly impact certificate verification, only the 3086 // list of trust anchors sent to the peer. 3087 OPENSSL_EXPORT int SSL_CTX_set1_requested_trust_anchors(SSL_CTX *ctx, 3088 const uint8_t *ids, 3089 size_t ids_len); 3090 3091 // SSL_set1_requested_trust_anchors behaves like 3092 // |SSL_CTX_set1_requested_trust_anchors| but configures the value on |ssl|. 3093 OPENSSL_EXPORT int SSL_set1_requested_trust_anchors(SSL *ssl, 3094 const uint8_t *ids, 3095 size_t ids_len); 3096 3097 // SSL_peer_matched_trust_anchor returns one if the peer reported that its 3098 // certificate chain matched one of the trust anchor IDs requested by |ssl|, and 3099 // zero otherwise. 3100 // 3101 // This value is only available during the handshake and is expected to be 3102 // called during certificate verification, e.g. during |SSL_set_custom_verify| 3103 // or |SSL_CTX_set_cert_verify_callback| callbacks. If the value is one, callers 3104 // can safely treat the peer's certificate chain as a pre-built path and skip 3105 // path-building in certificate verification. 3106 OPENSSL_EXPORT int SSL_peer_matched_trust_anchor(const SSL *ssl); 3107 3108 // SSL_get0_peer_available_trust_anchors gets the peer's available trust anchor 3109 // IDs. It sets |*out| and |*out_len| so that |*out| points to |*out_len| bytes 3110 // containing the list in wire format (i.e. a series of non-empty 3111 // 8-bit-length-prefixed strings). If the peer did not provide a list, the 3112 // function will output zero bytes. Only servers can provide available trust 3113 // anchor IDs, so this API will only output a list when |ssl| is a client. 3114 // 3115 // This value is only available during the handshake and is expected to be 3116 // called in the event of certificate verification failure. Client applications 3117 // can use it to retry the connection, requesting different trust anchors. See 3118 // Section 4.3 of draft-ietf-tls-trust-anchor-ids-00 for details. 3119 // |CBS_get_u8_length_prefixed| may be used to iterate over the format. 3120 // 3121 // If needed in other contexts, callers may save the value during certificate 3122 // verification, or at |SSL_CB_HANDSHAKE_DONE| with |SSL_CTX_set_info_callback|. 3123 OPENSSL_EXPORT void SSL_get0_peer_available_trust_anchors(const SSL *ssl, 3124 const uint8_t **out, 3125 size_t *out_len); 3126 3127 3128 // Server name indication. 3129 // 3130 // The server_name extension (RFC 3546) allows the client to advertise the name 3131 // of the server it is connecting to. This is used in virtual hosting 3132 // deployments to select one of a several certificates on a single IP. Only the 3133 // host_name name type is supported. 3134 3135 #define TLSEXT_NAMETYPE_host_name 0 3136 3137 // SSL_set_tlsext_host_name, for a client, configures |ssl| to advertise |name| 3138 // in the server_name extension. It returns one on success and zero on error. 3139 OPENSSL_EXPORT int SSL_set_tlsext_host_name(SSL *ssl, const char *name); 3140 3141 // SSL_get_servername, for a server, returns the hostname supplied by the 3142 // client or NULL if there was none. The |type| argument must be 3143 // |TLSEXT_NAMETYPE_host_name|. 3144 OPENSSL_EXPORT const char *SSL_get_servername(const SSL *ssl, const int type); 3145 3146 // SSL_get_servername_type, for a server, returns |TLSEXT_NAMETYPE_host_name| 3147 // if the client sent a hostname and -1 otherwise. 3148 OPENSSL_EXPORT int SSL_get_servername_type(const SSL *ssl); 3149 3150 // SSL_CTX_set_tlsext_servername_callback configures |callback| to be called on 3151 // the server after ClientHello extensions have been parsed and returns one. 3152 // The callback may use |SSL_get_servername| to examine the server_name 3153 // extension and returns a |SSL_TLSEXT_ERR_*| value. The value of |arg| may be 3154 // set by calling |SSL_CTX_set_tlsext_servername_arg|. 3155 // 3156 // If the callback returns |SSL_TLSEXT_ERR_NOACK|, the server_name extension is 3157 // not acknowledged in the ServerHello. If the return value is 3158 // |SSL_TLSEXT_ERR_ALERT_FATAL|, then |*out_alert| is the alert to send, 3159 // defaulting to |SSL_AD_UNRECOGNIZED_NAME|. |SSL_TLSEXT_ERR_ALERT_WARNING| is 3160 // ignored and treated as |SSL_TLSEXT_ERR_OK|. 3161 OPENSSL_EXPORT int SSL_CTX_set_tlsext_servername_callback( 3162 SSL_CTX *ctx, int (*callback)(SSL *ssl, int *out_alert, void *arg)); 3163 3164 // SSL_CTX_set_tlsext_servername_arg sets the argument to the servername 3165 // callback and returns one. See |SSL_CTX_set_tlsext_servername_callback|. 3166 OPENSSL_EXPORT int SSL_CTX_set_tlsext_servername_arg(SSL_CTX *ctx, void *arg); 3167 3168 // SSL_TLSEXT_ERR_* are values returned by some extension-related callbacks. 3169 #define SSL_TLSEXT_ERR_OK 0 3170 #define SSL_TLSEXT_ERR_ALERT_WARNING 1 3171 #define SSL_TLSEXT_ERR_ALERT_FATAL 2 3172 #define SSL_TLSEXT_ERR_NOACK 3 3173 3174 // SSL_set_SSL_CTX changes |ssl|'s |SSL_CTX|. |ssl| will use the 3175 // certificate-related settings from |ctx|, and |SSL_get_SSL_CTX| will report 3176 // |ctx|. This function may be used during the callbacks registered by 3177 // |SSL_CTX_set_select_certificate_cb|, 3178 // |SSL_CTX_set_tlsext_servername_callback|, and |SSL_CTX_set_cert_cb| or when 3179 // the handshake is paused from them. It is typically used to switch 3180 // certificates based on SNI. 3181 // 3182 // Note the session cache and related settings will continue to use the initial 3183 // |SSL_CTX|. Callers should use |SSL_CTX_set_session_id_context| to partition 3184 // the session cache between different domains. 3185 // 3186 // TODO(davidben): Should other settings change after this call? 3187 OPENSSL_EXPORT SSL_CTX *SSL_set_SSL_CTX(SSL *ssl, SSL_CTX *ctx); 3188 3189 3190 // Application-layer protocol negotiation. 3191 // 3192 // The ALPN extension (RFC 7301) allows negotiating different application-layer 3193 // protocols over a single port. This is used, for example, to negotiate 3194 // HTTP/2. 3195 3196 // SSL_CTX_set_alpn_protos sets the client ALPN protocol list on |ctx| to 3197 // |protos|. |protos| must be in wire-format (i.e. a series of non-empty, 8-bit 3198 // length-prefixed strings), or the empty string to disable ALPN. It returns 3199 // zero on success and one on failure. Configuring a non-empty string enables 3200 // ALPN on a client. 3201 // 3202 // WARNING: this function is dangerous because it breaks the usual return value 3203 // convention. 3204 OPENSSL_EXPORT int SSL_CTX_set_alpn_protos(SSL_CTX *ctx, const uint8_t *protos, 3205 size_t protos_len); 3206 3207 // SSL_set_alpn_protos sets the client ALPN protocol list on |ssl| to |protos|. 3208 // |protos| must be in wire-format (i.e. a series of non-empty, 8-bit 3209 // length-prefixed strings), or the empty string to disable ALPN. It returns 3210 // zero on success and one on failure. Configuring a non-empty string enables 3211 // ALPN on a client. 3212 // 3213 // WARNING: this function is dangerous because it breaks the usual return value 3214 // convention. 3215 OPENSSL_EXPORT int SSL_set_alpn_protos(SSL *ssl, const uint8_t *protos, 3216 size_t protos_len); 3217 3218 // SSL_CTX_set_alpn_select_cb sets a callback function on |ctx| that is called 3219 // during ClientHello processing in order to select an ALPN protocol from the 3220 // client's list of offered protocols. |SSL_select_next_proto| is an optional 3221 // utility function which may be useful in implementing this callback. 3222 // 3223 // The callback is passed a wire-format (i.e. a series of non-empty, 8-bit 3224 // length-prefixed strings) ALPN protocol list in |in|. To select a protocol, 3225 // the callback should set |*out| and |*out_len| to the selected protocol and 3226 // return |SSL_TLSEXT_ERR_OK| on success. It does not pass ownership of the 3227 // buffer, so |*out| should point to a static string, a buffer that outlives the 3228 // callback call, or the corresponding entry in |in|. 3229 // 3230 // If the server supports ALPN, but there are no protocols in common, the 3231 // callback should return |SSL_TLSEXT_ERR_ALERT_FATAL| to abort the connection 3232 // with a no_application_protocol alert. 3233 // 3234 // If the server does not support ALPN, it can return |SSL_TLSEXT_ERR_NOACK| to 3235 // continue the handshake without negotiating a protocol. This may be useful if 3236 // multiple server configurations share an |SSL_CTX|, only some of which have 3237 // ALPN protocols configured. 3238 // 3239 // |SSL_TLSEXT_ERR_ALERT_WARNING| is ignored and will be treated as 3240 // |SSL_TLSEXT_ERR_NOACK|. 3241 // 3242 // The callback will only be called if the client supports ALPN. Callers that 3243 // wish to require ALPN for all clients must check |SSL_get0_alpn_selected| 3244 // after the handshake. In QUIC connections, this is done automatically. 3245 // 3246 // The cipher suite is selected before negotiating ALPN. The callback may use 3247 // |SSL_get_pending_cipher| to query the cipher suite. This may be used to 3248 // implement HTTP/2's cipher suite constraints. 3249 OPENSSL_EXPORT void SSL_CTX_set_alpn_select_cb( 3250 SSL_CTX *ctx, 3251 int (*cb)(SSL *ssl, const uint8_t **out, uint8_t *out_len, 3252 const uint8_t *in, unsigned in_len, void *arg), 3253 void *arg); 3254 3255 // SSL_get0_alpn_selected gets the selected ALPN protocol (if any) from |ssl|. 3256 // On return it sets |*out_data| to point to |*out_len| bytes of protocol name 3257 // (not including the leading length-prefix byte). If the server didn't respond 3258 // with a negotiated protocol then |*out_len| will be zero. 3259 OPENSSL_EXPORT void SSL_get0_alpn_selected(const SSL *ssl, 3260 const uint8_t **out_data, 3261 unsigned *out_len); 3262 3263 // SSL_CTX_set_allow_unknown_alpn_protos configures client connections on |ctx| 3264 // to allow unknown ALPN protocols from the server. Otherwise, by default, the 3265 // client will require that the protocol be advertised in 3266 // |SSL_CTX_set_alpn_protos|. 3267 OPENSSL_EXPORT void SSL_CTX_set_allow_unknown_alpn_protos(SSL_CTX *ctx, 3268 int enabled); 3269 3270 3271 // Application-layer protocol settings 3272 // 3273 // The ALPS extension (draft-vvv-tls-alps) allows exchanging application-layer 3274 // settings in the TLS handshake for applications negotiated with ALPN. Note 3275 // that, when ALPS is negotiated, the client and server each advertise their own 3276 // settings, so there are functions to both configure setting to send and query 3277 // received settings. 3278 3279 // SSL_add_application_settings configures |ssl| to enable ALPS with ALPN 3280 // protocol |proto|, sending an ALPS value of |settings|. It returns one on 3281 // success and zero on error. If |proto| is negotiated via ALPN and the peer 3282 // supports ALPS, |settings| will be sent to the peer. The peer's ALPS value can 3283 // be retrieved with |SSL_get0_peer_application_settings|. 3284 // 3285 // On the client, this function should be called before the handshake, once for 3286 // each supported ALPN protocol which uses ALPS. |proto| must be included in the 3287 // client's ALPN configuration (see |SSL_CTX_set_alpn_protos| and 3288 // |SSL_set_alpn_protos|). On the server, ALPS can be preconfigured for each 3289 // protocol as in the client, or configuration can be deferred to the ALPN 3290 // callback (see |SSL_CTX_set_alpn_select_cb|), in which case only the selected 3291 // protocol needs to be configured. 3292 // 3293 // ALPS can be independently configured from 0-RTT, however changes in protocol 3294 // settings will fallback to 1-RTT to negotiate the new value, so it is 3295 // recommended for |settings| to be relatively stable. 3296 OPENSSL_EXPORT int SSL_add_application_settings(SSL *ssl, const uint8_t *proto, 3297 size_t proto_len, 3298 const uint8_t *settings, 3299 size_t settings_len); 3300 3301 // SSL_get0_peer_application_settings sets |*out_data| and |*out_len| to a 3302 // buffer containing the peer's ALPS value, or the empty string if ALPS was not 3303 // negotiated. Note an empty string could also indicate the peer sent an empty 3304 // settings value. Use |SSL_has_application_settings| to check if ALPS was 3305 // negotiated. The output buffer is owned by |ssl| and is valid until the next 3306 // time |ssl| is modified. 3307 OPENSSL_EXPORT void SSL_get0_peer_application_settings(const SSL *ssl, 3308 const uint8_t **out_data, 3309 size_t *out_len); 3310 3311 // SSL_has_application_settings returns one if ALPS was negotiated on this 3312 // connection and zero otherwise. 3313 OPENSSL_EXPORT int SSL_has_application_settings(const SSL *ssl); 3314 3315 // SSL_set_alps_use_new_codepoint configures whether to use the new ALPS 3316 // codepoint. By default, the old codepoint is used. 3317 OPENSSL_EXPORT void SSL_set_alps_use_new_codepoint(SSL *ssl, int use_new); 3318 3319 3320 // Certificate compression. 3321 // 3322 // Certificates in TLS 1.3 can be compressed (RFC 8879). BoringSSL supports this 3323 // as both a client and a server, but does not link against any specific 3324 // compression libraries in order to keep dependencies to a minimum. Instead, 3325 // hooks for compression and decompression can be installed in an |SSL_CTX| to 3326 // enable support. 3327 3328 // ssl_cert_compression_func_t is a pointer to a function that performs 3329 // compression. It must write the compressed representation of |in| to |out|, 3330 // returning one on success and zero on error. The results of compressing 3331 // certificates are not cached internally. Implementations may wish to implement 3332 // their own cache if they expect it to be useful given the certificates that 3333 // they serve. 3334 typedef int (*ssl_cert_compression_func_t)(SSL *ssl, CBB *out, 3335 const uint8_t *in, size_t in_len); 3336 3337 // ssl_cert_decompression_func_t is a pointer to a function that performs 3338 // decompression. The compressed data from the peer is passed as |in| and the 3339 // decompressed result must be exactly |uncompressed_len| bytes long. It returns 3340 // one on success, in which case |*out| must be set to the result of 3341 // decompressing |in|, or zero on error. Setting |*out| transfers ownership, 3342 // i.e. |CRYPTO_BUFFER_free| will be called on |*out| at some point in the 3343 // future. The results of decompressions are not cached internally. 3344 // Implementations may wish to implement their own cache if they expect it to be 3345 // useful. 3346 typedef int (*ssl_cert_decompression_func_t)(SSL *ssl, CRYPTO_BUFFER **out, 3347 size_t uncompressed_len, 3348 const uint8_t *in, size_t in_len); 3349 3350 // SSL_CTX_add_cert_compression_alg registers a certificate compression 3351 // algorithm on |ctx| with ID |alg_id|. (The value of |alg_id| should be an IANA 3352 // assigned value and each can only be registered once.) 3353 // 3354 // One of the function pointers may be NULL to avoid having to implement both 3355 // sides of a compression algorithm if you're only going to use it in one 3356 // direction. In this case, the unimplemented direction acts like it was never 3357 // configured. 3358 // 3359 // For a server, algorithms are registered in preference order with the most 3360 // preferable first. It returns one on success or zero on error. 3361 OPENSSL_EXPORT int SSL_CTX_add_cert_compression_alg( 3362 SSL_CTX *ctx, uint16_t alg_id, ssl_cert_compression_func_t compress, 3363 ssl_cert_decompression_func_t decompress); 3364 3365 3366 // Next protocol negotiation. 3367 // 3368 // The NPN extension (draft-agl-tls-nextprotoneg-03) is the predecessor to ALPN 3369 // and deprecated in favor of it. 3370 3371 // SSL_CTX_set_next_protos_advertised_cb sets a callback that is called when a 3372 // TLS server needs a list of supported protocols for Next Protocol Negotiation. 3373 // 3374 // If the callback wishes to advertise NPN to the client, it should return 3375 // |SSL_TLSEXT_ERR_OK| and then set |*out| and |*out_len| to describe to a 3376 // buffer containing a (possibly empty) list of supported protocols in wire 3377 // format. That is, each protocol is prefixed with a 1-byte length, then 3378 // concatenated. From there, the client will select a protocol, possibly one not 3379 // on the server's list. The caller can use |SSL_get0_next_proto_negotiated| 3380 // after the handshake completes to query the final protocol. 3381 // 3382 // The returned buffer must remain valid and unmodified for at least the 3383 // duration of the |SSL| operation (e.g. |SSL_do_handshake|) that triggered the 3384 // callback. 3385 // 3386 // If the caller wishes not to advertise NPN, it should return 3387 // |SSL_TLSEXT_ERR_NOACK|. No NPN extension will be included in the ServerHello, 3388 // and the TLS server will behave as if it does not implement NPN. 3389 OPENSSL_EXPORT void SSL_CTX_set_next_protos_advertised_cb( 3390 SSL_CTX *ctx, 3391 int (*cb)(SSL *ssl, const uint8_t **out, unsigned *out_len, void *arg), 3392 void *arg); 3393 3394 // SSL_CTX_set_next_proto_select_cb sets a callback that is called when a client 3395 // needs to select a protocol from the server's provided list, passed in wire 3396 // format in |in_len| bytes from |in|. The callback can assume that |in| is 3397 // syntactically valid. |SSL_select_next_proto| is an optional utility function 3398 // which may be useful in implementing this callback. 3399 // 3400 // On success, the callback should return |SSL_TLSEXT_ERR_OK| and set |*out| and 3401 // |*out_len| to describe a buffer containing the selected protocol, or an 3402 // empty buffer to select no protocol. The returned buffer may point within 3403 // |in|, or it may point to some other buffer that remains valid and unmodified 3404 // for at least the duration of the |SSL| operation (e.g. |SSL_do_handshake|) 3405 // that triggered the callback. 3406 // 3407 // Returning any other value indicates a fatal error and will terminate the TLS 3408 // connection. To proceed without selecting a protocol, the callback must return 3409 // |SSL_TLSEXT_ERR_OK| and set |*out| and |*out_len| to an empty buffer. (E.g. 3410 // NULL and zero, respectively.) 3411 // 3412 // Configuring this callback enables NPN on a client. Although the callback can 3413 // then decline to negotiate a protocol, merely configuring the callback causes 3414 // the client to offer NPN in the ClientHello. Callers thus should not configure 3415 // this callback in TLS client contexts that are not intended to use NPN. 3416 OPENSSL_EXPORT void SSL_CTX_set_next_proto_select_cb( 3417 SSL_CTX *ctx, 3418 int (*cb)(SSL *ssl, uint8_t **out, uint8_t *out_len, const uint8_t *in, 3419 unsigned in_len, void *arg), 3420 void *arg); 3421 3422 // SSL_get0_next_proto_negotiated sets |*out_data| and |*out_len| to point to 3423 // the client's requested protocol for this connection. If the client didn't 3424 // request any protocol, then |*out_len| is set to zero. 3425 // 3426 // Note that the client can request any protocol it chooses. The value returned 3427 // from this function need not be a member of the list of supported protocols 3428 // provided by the server. 3429 OPENSSL_EXPORT void SSL_get0_next_proto_negotiated(const SSL *ssl, 3430 const uint8_t **out_data, 3431 unsigned *out_len); 3432 3433 // SSL_select_next_proto implements the standard protocol selection for either 3434 // ALPN servers or NPN clients. It is expected that this function is called from 3435 // the callback set by |SSL_CTX_set_alpn_select_cb| or 3436 // |SSL_CTX_set_next_proto_select_cb|. 3437 // 3438 // |peer| and |supported| contain the peer and locally-configured protocols, 3439 // respectively. This function finds the first protocol in |peer| which is also 3440 // in |supported|. If one was found, it sets |*out| and |*out_len| to point to 3441 // it and returns |OPENSSL_NPN_NEGOTIATED|. Otherwise, it returns 3442 // |OPENSSL_NPN_NO_OVERLAP| and sets |*out| and |*out_len| to the first 3443 // supported protocol. 3444 // 3445 // In ALPN, the server should only select protocols among those that the client 3446 // offered. Thus, if this function returns |OPENSSL_NPN_NO_OVERLAP|, the caller 3447 // should ignore |*out| and return |SSL_TLSEXT_ERR_ALERT_FATAL| from 3448 // |SSL_CTX_set_alpn_select_cb|'s callback to indicate there was no match. 3449 // 3450 // In NPN, the client may either select one of the server's protocols, or an 3451 // "opportunistic" protocol as described in Section 6 of 3452 // draft-agl-tls-nextprotoneg-03. When this function returns 3453 // |OPENSSL_NPN_NO_OVERLAP|, |*out| implicitly selects the first supported 3454 // protocol for use as the opportunistic protocol. The caller may use it, 3455 // ignore it and select a different opportunistic protocol, or ignore it and 3456 // select no protocol (empty string). 3457 // 3458 // |peer| and |supported| must be vectors of 8-bit, length-prefixed byte 3459 // strings. The length byte itself is not included in the length. A byte string 3460 // of length 0 is invalid. No byte string may be truncated. |supported| must be 3461 // non-empty; a caller that supports no ALPN/NPN protocols should skip 3462 // negotiating the extension, rather than calling this function. If any of these 3463 // preconditions do not hold, this function will return |OPENSSL_NPN_NO_OVERLAP| 3464 // and set |*out| and |*out_len| to an empty buffer for robustness, but callers 3465 // are not recommended to rely on this. An empty buffer is not a valid output 3466 // for |SSL_CTX_set_alpn_select_cb|'s callback. 3467 // 3468 // WARNING: |*out| and |*out_len| may alias either |peer| or |supported| and may 3469 // not be used after one of those buffers is modified or released. Additionally, 3470 // this function is not const-correct for compatibility reasons. Although |*out| 3471 // is a non-const pointer, callers may not modify the buffer though |*out|. 3472 OPENSSL_EXPORT int SSL_select_next_proto(uint8_t **out, uint8_t *out_len, 3473 const uint8_t *peer, unsigned peer_len, 3474 const uint8_t *supported, 3475 unsigned supported_len); 3476 3477 #define OPENSSL_NPN_UNSUPPORTED 0 3478 #define OPENSSL_NPN_NEGOTIATED 1 3479 #define OPENSSL_NPN_NO_OVERLAP 2 3480 3481 3482 // Channel ID. 3483 // 3484 // See draft-balfanz-tls-channelid-01. This is an old, experimental mechanism 3485 // and should not be used in new code. 3486 3487 // SSL_CTX_set_tls_channel_id_enabled configures whether connections associated 3488 // with |ctx| should enable Channel ID as a server. 3489 OPENSSL_EXPORT void SSL_CTX_set_tls_channel_id_enabled(SSL_CTX *ctx, 3490 int enabled); 3491 3492 // SSL_set_tls_channel_id_enabled configures whether |ssl| should enable Channel 3493 // ID as a server. 3494 OPENSSL_EXPORT void SSL_set_tls_channel_id_enabled(SSL *ssl, int enabled); 3495 3496 // SSL_CTX_set1_tls_channel_id configures a TLS client to send a TLS Channel ID 3497 // to compatible servers. |private_key| must be a P-256 EC key. It returns one 3498 // on success and zero on error. 3499 OPENSSL_EXPORT int SSL_CTX_set1_tls_channel_id(SSL_CTX *ctx, 3500 EVP_PKEY *private_key); 3501 3502 // SSL_set1_tls_channel_id configures a TLS client to send a TLS Channel ID to 3503 // compatible servers. |private_key| must be a P-256 EC key. It returns one on 3504 // success and zero on error. 3505 OPENSSL_EXPORT int SSL_set1_tls_channel_id(SSL *ssl, EVP_PKEY *private_key); 3506 3507 // SSL_get_tls_channel_id gets the client's TLS Channel ID from a server |SSL| 3508 // and copies up to the first |max_out| bytes into |out|. The Channel ID 3509 // consists of the client's P-256 public key as an (x,y) pair where each is a 3510 // 32-byte, big-endian field element. It returns 0 if the client didn't offer a 3511 // Channel ID and the length of the complete Channel ID otherwise. This function 3512 // always returns zero if |ssl| is a client. 3513 OPENSSL_EXPORT size_t SSL_get_tls_channel_id(SSL *ssl, uint8_t *out, 3514 size_t max_out); 3515 3516 3517 // DTLS-SRTP. 3518 // 3519 // See RFC 5764. 3520 3521 // srtp_protection_profile_st (aka |SRTP_PROTECTION_PROFILE|) is an SRTP 3522 // profile for use with the use_srtp extension. 3523 struct srtp_protection_profile_st { 3524 const char *name; 3525 unsigned long id; 3526 } /* SRTP_PROTECTION_PROFILE */; 3527 3528 DEFINE_CONST_STACK_OF(SRTP_PROTECTION_PROFILE) 3529 3530 // SRTP_* define constants for SRTP profiles. 3531 #define SRTP_AES128_CM_SHA1_80 0x0001 3532 #define SRTP_AES128_CM_SHA1_32 0x0002 3533 #define SRTP_AES128_F8_SHA1_80 0x0003 3534 #define SRTP_AES128_F8_SHA1_32 0x0004 3535 #define SRTP_NULL_SHA1_80 0x0005 3536 #define SRTP_NULL_SHA1_32 0x0006 3537 #define SRTP_AEAD_AES_128_GCM 0x0007 3538 #define SRTP_AEAD_AES_256_GCM 0x0008 3539 3540 // SSL_CTX_set_srtp_profiles enables SRTP for all SSL objects created from 3541 // |ctx|. |profile| contains a colon-separated list of profile names. It returns 3542 // one on success and zero on failure. 3543 OPENSSL_EXPORT int SSL_CTX_set_srtp_profiles(SSL_CTX *ctx, 3544 const char *profiles); 3545 3546 // SSL_set_srtp_profiles enables SRTP for |ssl|. |profile| contains a 3547 // colon-separated list of profile names. It returns one on success and zero on 3548 // failure. 3549 OPENSSL_EXPORT int SSL_set_srtp_profiles(SSL *ssl, const char *profiles); 3550 3551 // SSL_get_srtp_profiles returns the SRTP profiles supported by |ssl|. 3552 OPENSSL_EXPORT const STACK_OF(SRTP_PROTECTION_PROFILE) *SSL_get_srtp_profiles( 3553 const SSL *ssl); 3554 3555 // SSL_get_selected_srtp_profile returns the selected SRTP profile, or NULL if 3556 // SRTP was not negotiated. 3557 OPENSSL_EXPORT const SRTP_PROTECTION_PROFILE *SSL_get_selected_srtp_profile( 3558 SSL *ssl); 3559 3560 3561 // Pre-shared keys. 3562 // 3563 // Connections may be configured with PSK (Pre-Shared Key) cipher suites. These 3564 // authenticate using out-of-band pre-shared keys rather than certificates. See 3565 // RFC 4279. 3566 // 3567 // This implementation uses NUL-terminated C strings for identities and identity 3568 // hints, so values with a NUL character are not supported. (RFC 4279 does not 3569 // specify the format of an identity.) 3570 3571 // PSK_MAX_IDENTITY_LEN is the maximum supported length of a PSK identity, 3572 // excluding the NUL terminator. 3573 #define PSK_MAX_IDENTITY_LEN 128 3574 3575 // PSK_MAX_PSK_LEN is the maximum supported length of a pre-shared key. 3576 #define PSK_MAX_PSK_LEN 256 3577 3578 // SSL_CTX_set_psk_client_callback sets the callback to be called when PSK is 3579 // negotiated on the client. This callback must be set to enable PSK cipher 3580 // suites on the client. 3581 // 3582 // The callback is passed the identity hint in |hint| or NULL if none was 3583 // provided. It should select a PSK identity and write the identity and the 3584 // corresponding PSK to |identity| and |psk|, respectively. The identity is 3585 // written as a NUL-terminated C string of length (excluding the NUL terminator) 3586 // at most |max_identity_len|. The PSK's length must be at most |max_psk_len|. 3587 // The callback returns the length of the PSK or 0 if no suitable identity was 3588 // found. 3589 OPENSSL_EXPORT void SSL_CTX_set_psk_client_callback( 3590 SSL_CTX *ctx, unsigned (*cb)(SSL *ssl, const char *hint, char *identity, 3591 unsigned max_identity_len, uint8_t *psk, 3592 unsigned max_psk_len)); 3593 3594 // SSL_set_psk_client_callback sets the callback to be called when PSK is 3595 // negotiated on the client. This callback must be set to enable PSK cipher 3596 // suites on the client. See also |SSL_CTX_set_psk_client_callback|. 3597 OPENSSL_EXPORT void SSL_set_psk_client_callback( 3598 SSL *ssl, unsigned (*cb)(SSL *ssl, const char *hint, char *identity, 3599 unsigned max_identity_len, uint8_t *psk, 3600 unsigned max_psk_len)); 3601 3602 // SSL_CTX_set_psk_server_callback sets the callback to be called when PSK is 3603 // negotiated on the server. This callback must be set to enable PSK cipher 3604 // suites on the server. 3605 // 3606 // The callback is passed the identity in |identity|. It should write a PSK of 3607 // length at most |max_psk_len| to |psk| and return the number of bytes written 3608 // or zero if the PSK identity is unknown. 3609 OPENSSL_EXPORT void SSL_CTX_set_psk_server_callback( 3610 SSL_CTX *ctx, unsigned (*cb)(SSL *ssl, const char *identity, uint8_t *psk, 3611 unsigned max_psk_len)); 3612 3613 // SSL_set_psk_server_callback sets the callback to be called when PSK is 3614 // negotiated on the server. This callback must be set to enable PSK cipher 3615 // suites on the server. See also |SSL_CTX_set_psk_server_callback|. 3616 OPENSSL_EXPORT void SSL_set_psk_server_callback( 3617 SSL *ssl, unsigned (*cb)(SSL *ssl, const char *identity, uint8_t *psk, 3618 unsigned max_psk_len)); 3619 3620 // SSL_CTX_use_psk_identity_hint configures server connections to advertise an 3621 // identity hint of |identity_hint|. It returns one on success and zero on 3622 // error. 3623 OPENSSL_EXPORT int SSL_CTX_use_psk_identity_hint(SSL_CTX *ctx, 3624 const char *identity_hint); 3625 3626 // SSL_use_psk_identity_hint configures server connections to advertise an 3627 // identity hint of |identity_hint|. It returns one on success and zero on 3628 // error. 3629 OPENSSL_EXPORT int SSL_use_psk_identity_hint(SSL *ssl, 3630 const char *identity_hint); 3631 3632 // SSL_get_psk_identity_hint returns the PSK identity hint advertised for |ssl| 3633 // or NULL if there is none. 3634 OPENSSL_EXPORT const char *SSL_get_psk_identity_hint(const SSL *ssl); 3635 3636 // SSL_get_psk_identity, after the handshake completes, returns the PSK identity 3637 // that was negotiated by |ssl| or NULL if PSK was not used. 3638 OPENSSL_EXPORT const char *SSL_get_psk_identity(const SSL *ssl); 3639 3640 3641 // Delegated credentials. 3642 // 3643 // Delegated credentials (RFC 9345) allow a TLS 1.3 endpoint to use its 3644 // certificate to issue new credentials for authentication. Once issued, 3645 // credentials can't be revoked. In order to mitigate the damage in case the 3646 // credential secret key is compromised, the credential is only valid for a 3647 // short time (days, hours, or even minutes). 3648 // 3649 // Currently only the authenticating side, as a server, is implemented. To 3650 // authenticate with delegated credentials, construct an |SSL_CREDENTIAL| with 3651 // |SSL_CREDENTIAL_new_delegated| and add it to the credential list. See also 3652 // |SSL_CTX_add1_credential|. Callers may configure a mix of delegated 3653 // credentials and X.509 credentials on the same |SSL| or |SSL_CTX| to support a 3654 // range of clients. 3655 3656 // SSL_CREDENTIAL_new_delegated returns a new, empty delegated credential, or 3657 // NULL on error. Callers should release the result with |SSL_CREDENTIAL_free| 3658 // when done. 3659 // 3660 // Callers should configure a delegated credential, certificate chain and 3661 // private key on the credential, along with other properties, then add it with 3662 // |SSL_CTX_add1_credential|. 3663 OPENSSL_EXPORT SSL_CREDENTIAL *SSL_CREDENTIAL_new_delegated(void); 3664 3665 // SSL_CREDENTIAL_set1_delegated_credential sets |cred|'s delegated credentials 3666 // structure to |dc|. It returns one on success and zero on error, including if 3667 // |dc| is malformed. This should be a DelegatedCredential structure, signed by 3668 // the end-entity certificate, as described in RFC 9345. 3669 OPENSSL_EXPORT int SSL_CREDENTIAL_set1_delegated_credential( 3670 SSL_CREDENTIAL *cred, CRYPTO_BUFFER *dc); 3671 3672 3673 // Password Authenticated Key Exchange (PAKE). 3674 // 3675 // Password Authenticated Key Exchange protocols allow client and server to 3676 // mutually authenticate one another using knowledge of a password or other 3677 // low-entropy secret. While the TLS 1.3 pre-shared key (PSK) mechanism can 3678 // authenticate a high-entropy secret, it cannot be used with low-entropy 3679 // secrets as the PSK binder values can be used to mount a dictionary attack on 3680 // a low-entropy PSK. Using TLS 1.3 with a PAKE limits an attacker to confirming 3681 // one password guess per handshake attempt. 3682 // 3683 // WARNING: The PAKE mode in TLS is not a general-purpose authentication scheme. 3684 // As the underlying secret is still low-entropy, callers must limit brute force 3685 // attacks across multiple connections, especially in multi-connection protocols 3686 // such as HTTP. The |error_limit| and |rate_limit| parameters in the functions 3687 // below may be used to implement this, provided the same |SSL_CREDENTIAL| 3688 // object is used across connections. Applications using multiple connections 3689 // should use the PAKE credential only once to authenticate a high-entropy 3690 // secret, e.g. exporting a PSK from |SSL_export_keying_material|, and use the 3691 // high-entropy secret for subsequent connections. 3692 // 3693 // TODO(crbug.com/369963041): Implement RFC 9258 so one can actually do that. 3694 // 3695 // WARNING: PAKE support in TLS is still experimental and may change as the 3696 // standard evolves. See 3697 // https://chris-wood.github.io/draft-bmw-tls-pake13/draft-bmw-tls-pake13.html 3698 // 3699 // Currently, only the SPAKE2PLUS_V1 named PAKE algorithm is implemented; see 3700 // https://chris-wood.github.io/draft-bmw-tls-pake13/draft-bmw-tls-pake13.html#section-8.1. 3701 3702 // SSL_PAKE_SPAKE2PLUSV1 is the codepoint for SPAKE2PLUS_V1. See 3703 // https://chris-wood.github.io/draft-bmw-tls-pake13/draft-bmw-tls-pake13.html#name-named-pake-registry. 3704 #define SSL_PAKE_SPAKE2PLUSV1 0x7d96 3705 3706 // SSL_spake2plusv1_register computes the values that the client (w0, 3707 // w1) and server (w0, registration_record) require to run SPAKE2+. These values 3708 // can be used when calling |SSL_CREDENTIAL_new_spake2plusv1_client| and 3709 // |SSL_CREDENTIAL_new_spake2plusv1_server|. The client and server identities 3710 // must match the values passed to those functions. 3711 // 3712 // Returns one on success and zero on error. 3713 OPENSSL_EXPORT int SSL_spake2plusv1_register( 3714 uint8_t out_w0[32], uint8_t out_w1[32], uint8_t out_registration_record[65], 3715 const uint8_t *password, size_t password_len, 3716 const uint8_t *client_identity, size_t client_identity_len, 3717 const uint8_t *server_identity, size_t server_identity_len); 3718 3719 // SSL_CREDENTIAL_new_spake2plusv1_client creates a new |SSL_CREDENTIAL| that 3720 // authenticates using SPAKE2+. It is to be used with a TLS client. 3721 // 3722 // The |context|, |client_identity|, and |server_identity| fields serve to 3723 // identity the SPAKE2+ settings and both sides of a connection must agree on 3724 // these values. If |context| is |NULL|, a default value will be used. 3725 // 3726 // |error_limit| is the number of failed handshakes allowed on the credential. 3727 // After the limit is reached, using the credential will fail. Ideally this 3728 // value is set to 1. Setting it to a higher value allows an attacker to have 3729 // that many attempts at guessing the password using this |SSL_CREDENTIAL|. 3730 // (Assuming that multiple TLS connections are allowed.) 3731 // 3732 // |w0| and |w1| come from calling |SSL_spake2plusv1_register|. 3733 // 3734 // Unlike most |SSL_CREDENTIAL|s, PAKE client credentials must be the only 3735 // credential configured on the connection. BoringSSL does not currently support 3736 // configuring multiple PAKE credentials as a client, or configuring a mix of 3737 // PAKE and non-PAKE credentials. Once a PAKE credential is configured, the 3738 // connection will require the server to authenticate with the same secret, so a 3739 // successful connection then implies that the server supported the PAKE and 3740 // knew the password. 3741 OPENSSL_EXPORT SSL_CREDENTIAL *SSL_CREDENTIAL_new_spake2plusv1_client( 3742 const uint8_t *context, size_t context_len, const uint8_t *client_identity, 3743 size_t client_identity_len, const uint8_t *server_identity, 3744 size_t server_identity_len, uint32_t error_limit, const uint8_t *w0, 3745 size_t w0_len, const uint8_t *w1, size_t w1_len); 3746 3747 // SSL_CREDENTIAL_new_spake2plusv1_server creates a new |SSL_CREDENTIAL| that 3748 // authenticates using SPAKE2+. It is to be used with a TLS server. 3749 // 3750 // The |context|, |client_identity|, and |server_identity| fields serve to 3751 // identity the SPAKE2+ settings and both sides of a connection must agree on 3752 // these values. If |context| is |NULL|, a default value will be used. 3753 // 3754 // |rate_limit| is the number of failed or unfinished handshakes allowed on the 3755 // credential. After the limit is reached, using the credential will fail. 3756 // Ideally this value is set to 1. Setting it to a higher value allows an 3757 // attacker to have that many attempts at guessing the password using this 3758 // |SSL_CREDENTIAL|. (Assuming that multiple TLS connections are allowed.) 3759 // 3760 // WARNING: |rate_limit| differs from the client's |error_limit| parameter. 3761 // Server PAKE credentials must temporarily deduct incomplete handshakes from 3762 // the limit, until the peer completes the handshake correctly. Thus 3763 // applications that use multiple connections in parallel may need a higher 3764 // limit, and thus higher attacker exposure, to avoid failures. Such 3765 // applications should instead use one PAKE-based connection to established a 3766 // high-entropy secret (e.g. with |SSL_export_keying_material|) instead of 3767 // repeating the PAKE exchange for each connection. 3768 // 3769 // |w0| and |registration_record| come from calling |SSL_spake2plusv1_register|, 3770 // which may be computed externally so that the server does not know the 3771 // password, or a password-equivalent secret. 3772 // 3773 // A server wishing to support a PAKE should install one of these credentials. 3774 // It is also possible to install certificate-based credentials, in which case 3775 // both PAKE and non-PAKE clients can be supported. However, if only a PAKE 3776 // credential is installed then the server knows that any successfully-connected 3777 // clients also knows the password. Otherwise, the server must be careful to 3778 // inspect the credential used for a connection before assuming that. 3779 OPENSSL_EXPORT SSL_CREDENTIAL *SSL_CREDENTIAL_new_spake2plusv1_server( 3780 const uint8_t *context, size_t context_len, const uint8_t *client_identity, 3781 size_t client_identity_len, const uint8_t *server_identity, 3782 size_t server_identity_len, uint32_t rate_limit, const uint8_t *w0, 3783 size_t w0_len, const uint8_t *registration_record, 3784 size_t registration_record_len); 3785 3786 3787 // QUIC integration. 3788 // 3789 // QUIC acts as an underlying transport for the TLS 1.3 handshake. The following 3790 // functions allow a QUIC implementation to serve as the underlying transport as 3791 // described in RFC 9001. 3792 // 3793 // When configured for QUIC, |SSL_do_handshake| will drive the handshake as 3794 // before, but it will not use the configured |BIO|. It will call functions on 3795 // |SSL_QUIC_METHOD| to configure secrets and send data. If data is needed from 3796 // the peer, it will return |SSL_ERROR_WANT_READ|. As the caller receives data 3797 // it can decrypt, it calls |SSL_provide_quic_data|. Subsequent 3798 // |SSL_do_handshake| calls will then consume that data and progress the 3799 // handshake. After the handshake is complete, the caller should continue to 3800 // call |SSL_provide_quic_data| for any post-handshake data, followed by 3801 // |SSL_process_quic_post_handshake| to process it. It is an error to call 3802 // |SSL_read| and |SSL_write| in QUIC. 3803 // 3804 // 0-RTT behaves similarly to |TLS_method|'s usual behavior. |SSL_do_handshake| 3805 // returns early as soon as the client (respectively, server) is allowed to send 3806 // 0-RTT (respectively, half-RTT) data. The caller should then call 3807 // |SSL_do_handshake| again to consume the remaining handshake messages and 3808 // confirm the handshake. As a client, |SSL_ERROR_EARLY_DATA_REJECTED| and 3809 // |SSL_reset_early_data_reject| behave as usual. 3810 // 3811 // See https://www.rfc-editor.org/rfc/rfc9001.html#section-4.1 for more details. 3812 // 3813 // To avoid DoS attacks, the QUIC implementation must limit the amount of data 3814 // being queued up. The implementation can call 3815 // |SSL_quic_max_handshake_flight_len| to get the maximum buffer length at each 3816 // encryption level. 3817 // 3818 // QUIC implementations must additionally configure transport parameters with 3819 // |SSL_set_quic_transport_params|. |SSL_get_peer_quic_transport_params| may be 3820 // used to query the value received from the peer. BoringSSL handles this 3821 // extension as an opaque byte string. The caller is responsible for serializing 3822 // and parsing them. See https://www.rfc-editor.org/rfc/rfc9000#section-7.4 for 3823 // details. 3824 // 3825 // QUIC additionally imposes restrictions on 0-RTT. In particular, the QUIC 3826 // transport layer requires that if a server accepts 0-RTT data, then the 3827 // transport parameters sent on the resumed connection must not lower any limits 3828 // compared to the transport parameters that the server sent on the connection 3829 // where the ticket for 0-RTT was issued. In effect, the server must remember 3830 // the transport parameters with the ticket. Application protocols running on 3831 // QUIC may impose similar restrictions, for example HTTP/3's restrictions on 3832 // SETTINGS frames. 3833 // 3834 // BoringSSL implements this check by doing a byte-for-byte comparison of an 3835 // opaque context passed in by the server. This context must be the same on the 3836 // connection where the ticket was issued and the connection where that ticket 3837 // is used for 0-RTT. If there is a mismatch, or the context was not set, 3838 // BoringSSL will reject early data (but not reject the resumption attempt). 3839 // This context is set via |SSL_set_quic_early_data_context| and should cover 3840 // both transport parameters and any application state. 3841 // |SSL_set_quic_early_data_context| must be called on the server with a 3842 // non-empty context if the server is to support 0-RTT in QUIC. 3843 // 3844 // BoringSSL does not perform any client-side checks on the transport 3845 // parameters received from a server that also accepted early data. It is up to 3846 // the caller to verify that the received transport parameters do not lower any 3847 // limits, and to close the QUIC connection if that is not the case. The same 3848 // holds for any application protocol state remembered for 0-RTT, e.g. HTTP/3 3849 // SETTINGS. 3850 3851 // ssl_encryption_level_t represents an encryption level in TLS 1.3. Values in 3852 // this enum match the first 4 epochs used in DTLS 1.3 (section 6.1). 3853 enum ssl_encryption_level_t BORINGSSL_ENUM_INT { 3854 ssl_encryption_initial = 0, 3855 ssl_encryption_early_data = 1, 3856 ssl_encryption_handshake = 2, 3857 ssl_encryption_application = 3, 3858 }; 3859 3860 // ssl_quic_method_st (aka |SSL_QUIC_METHOD|) describes custom QUIC hooks. 3861 struct ssl_quic_method_st { 3862 // set_read_secret configures the read secret and cipher suite for the given 3863 // encryption level. It returns one on success and zero to terminate the 3864 // handshake with an error. It will be called at most once per encryption 3865 // level. 3866 // 3867 // BoringSSL will not release read keys before QUIC may use them. Once a level 3868 // has been initialized, QUIC may begin processing data from it. Handshake 3869 // data should be passed to |SSL_provide_quic_data| and application data (if 3870 // |level| is |ssl_encryption_early_data| or |ssl_encryption_application|) may 3871 // be processed according to the rules of the QUIC protocol. 3872 // 3873 // QUIC ACKs packets at the same encryption level they were received at, 3874 // except that client |ssl_encryption_early_data| (0-RTT) packets trigger 3875 // server |ssl_encryption_application| (1-RTT) ACKs. BoringSSL will always 3876 // install ACK-writing keys with |set_write_secret| before the packet-reading 3877 // keys with |set_read_secret|. This ensures the caller can always ACK any 3878 // packet it decrypts. Note this means the server installs 1-RTT write keys 3879 // before 0-RTT read keys. 3880 // 3881 // The converse is not true. An encryption level may be configured with write 3882 // secrets a roundtrip before the corresponding secrets for reading ACKs is 3883 // available. 3884 int (*set_read_secret)(SSL *ssl, enum ssl_encryption_level_t level, 3885 const SSL_CIPHER *cipher, const uint8_t *secret, 3886 size_t secret_len); 3887 // set_write_secret behaves like |set_read_secret| but configures the write 3888 // secret and cipher suite for the given encryption level. It will be called 3889 // at most once per encryption level. 3890 // 3891 // BoringSSL will not release write keys before QUIC may use them. If |level| 3892 // is |ssl_encryption_early_data| or |ssl_encryption_application|, QUIC may 3893 // begin sending application data at |level|. However, note that BoringSSL 3894 // configures server |ssl_encryption_application| write keys before the client 3895 // Finished. This allows QUIC to send half-RTT data, but the handshake is not 3896 // confirmed at this point and, if requesting client certificates, the client 3897 // is not yet authenticated. 3898 // 3899 // See |set_read_secret| for additional invariants between packets and their 3900 // ACKs. 3901 // 3902 // Note that, on 0-RTT reject, the |ssl_encryption_early_data| write secret 3903 // may use a different cipher suite from the other keys. 3904 int (*set_write_secret)(SSL *ssl, enum ssl_encryption_level_t level, 3905 const SSL_CIPHER *cipher, const uint8_t *secret, 3906 size_t secret_len); 3907 // add_handshake_data adds handshake data to the current flight at the given 3908 // encryption level. It returns one on success and zero on error. 3909 // 3910 // BoringSSL will pack data from a single encryption level together, but a 3911 // single handshake flight may include multiple encryption levels. Callers 3912 // should defer writing data to the network until |flush_flight| to better 3913 // pack QUIC packets into transport datagrams. 3914 // 3915 // If |level| is not |ssl_encryption_initial|, this function will not be 3916 // called before |level| is initialized with |set_write_secret|. 3917 int (*add_handshake_data)(SSL *ssl, enum ssl_encryption_level_t level, 3918 const uint8_t *data, size_t len); 3919 // flush_flight is called when the current flight is complete and should be 3920 // written to the transport. Note a flight may contain data at several 3921 // encryption levels. It returns one on success and zero on error. 3922 int (*flush_flight)(SSL *ssl); 3923 // send_alert sends a fatal alert at the specified encryption level. It 3924 // returns one on success and zero on error. 3925 // 3926 // If |level| is not |ssl_encryption_initial|, this function will not be 3927 // called before |level| is initialized with |set_write_secret|. 3928 int (*send_alert)(SSL *ssl, enum ssl_encryption_level_t level, uint8_t alert); 3929 }; 3930 3931 // SSL_quic_max_handshake_flight_len returns returns the maximum number of bytes 3932 // that may be received at the given encryption level. This function should be 3933 // used to limit buffering in the QUIC implementation. 3934 // 3935 // See https://www.rfc-editor.org/rfc/rfc9000#section-7.5 3936 OPENSSL_EXPORT size_t SSL_quic_max_handshake_flight_len( 3937 const SSL *ssl, enum ssl_encryption_level_t level); 3938 3939 // SSL_quic_read_level returns the current read encryption level. 3940 // 3941 // TODO(davidben): Is it still necessary to expose this function to callers? 3942 // QUICHE does not use it. 3943 OPENSSL_EXPORT enum ssl_encryption_level_t SSL_quic_read_level(const SSL *ssl); 3944 3945 // SSL_quic_write_level returns the current write encryption level. 3946 // 3947 // TODO(davidben): Is it still necessary to expose this function to callers? 3948 // QUICHE does not use it. 3949 OPENSSL_EXPORT enum ssl_encryption_level_t SSL_quic_write_level(const SSL *ssl); 3950 3951 // SSL_provide_quic_data provides data from QUIC at a particular encryption 3952 // level |level|. It returns one on success and zero on error. Note this 3953 // function will return zero if the handshake is not expecting data from |level| 3954 // at this time. The QUIC implementation should then close the connection with 3955 // an error. 3956 OPENSSL_EXPORT int SSL_provide_quic_data(SSL *ssl, 3957 enum ssl_encryption_level_t level, 3958 const uint8_t *data, size_t len); 3959 3960 3961 // SSL_process_quic_post_handshake processes any data that QUIC has provided 3962 // after the handshake has completed. This includes NewSessionTicket messages 3963 // sent by the server. It returns one on success and zero on error. 3964 OPENSSL_EXPORT int SSL_process_quic_post_handshake(SSL *ssl); 3965 3966 // SSL_CTX_set_quic_method configures the QUIC hooks. This should only be 3967 // configured with a minimum version of TLS 1.3. |quic_method| must remain valid 3968 // for the lifetime of |ctx|. It returns one on success and zero on error. 3969 OPENSSL_EXPORT int SSL_CTX_set_quic_method(SSL_CTX *ctx, 3970 const SSL_QUIC_METHOD *quic_method); 3971 3972 // SSL_set_quic_method configures the QUIC hooks. This should only be 3973 // configured with a minimum version of TLS 1.3. |quic_method| must remain valid 3974 // for the lifetime of |ssl|. It returns one on success and zero on error. 3975 OPENSSL_EXPORT int SSL_set_quic_method(SSL *ssl, 3976 const SSL_QUIC_METHOD *quic_method); 3977 3978 // SSL_set_quic_transport_params configures |ssl| to send |params| (of length 3979 // |params_len|) in the quic_transport_parameters extension in either the 3980 // ClientHello or EncryptedExtensions handshake message. It is an error to set 3981 // transport parameters if |ssl| is not configured for QUIC. The buffer pointed 3982 // to by |params| only need be valid for the duration of the call to this 3983 // function. This function returns 1 on success and 0 on failure. 3984 OPENSSL_EXPORT int SSL_set_quic_transport_params(SSL *ssl, 3985 const uint8_t *params, 3986 size_t params_len); 3987 3988 // SSL_get_peer_quic_transport_params provides the caller with the value of the 3989 // quic_transport_parameters extension sent by the peer. A pointer to the buffer 3990 // containing the TransportParameters will be put in |*out_params|, and its 3991 // length in |*params_len|. This buffer will be valid for the lifetime of the 3992 // |SSL|. If no params were received from the peer, |*out_params_len| will be 0. 3993 OPENSSL_EXPORT void SSL_get_peer_quic_transport_params( 3994 const SSL *ssl, const uint8_t **out_params, size_t *out_params_len); 3995 3996 // SSL_set_quic_use_legacy_codepoint configures whether to use the legacy QUIC 3997 // extension codepoint 0xffa5 as opposed to the official value 57. Call with 3998 // |use_legacy| set to 1 to use 0xffa5 and call with 0 to use 57. By default, 3999 // the standard code point is used. 4000 OPENSSL_EXPORT void SSL_set_quic_use_legacy_codepoint(SSL *ssl, int use_legacy); 4001 4002 // SSL_set_quic_early_data_context configures a context string in QUIC servers 4003 // for accepting early data. If a resumption connection offers early data, the 4004 // server will check if the value matches that of the connection which minted 4005 // the ticket. If not, resumption still succeeds but early data is rejected. 4006 // This should include all QUIC Transport Parameters except ones specified that 4007 // the client MUST NOT remember. This should also include any application 4008 // protocol-specific state. For HTTP/3, this should be the serialized server 4009 // SETTINGS frame and the QUIC Transport Parameters (except the stateless reset 4010 // token). 4011 // 4012 // This function may be called before |SSL_do_handshake| or during server 4013 // certificate selection. It returns 1 on success and 0 on failure. 4014 OPENSSL_EXPORT int SSL_set_quic_early_data_context(SSL *ssl, 4015 const uint8_t *context, 4016 size_t context_len); 4017 4018 4019 // Early data. 4020 // 4021 // WARNING: 0-RTT support in BoringSSL is currently experimental and not fully 4022 // implemented. It may cause interoperability or security failures when used. 4023 // 4024 // Early data, or 0-RTT, is a feature in TLS 1.3 which allows clients to send 4025 // data on the first flight during a resumption handshake. This can save a 4026 // round-trip in some application protocols. 4027 // 4028 // WARNING: A 0-RTT handshake has different security properties from normal 4029 // handshake, so it is off by default unless opted in. In particular, early data 4030 // is replayable by a network attacker. Callers must account for this when 4031 // sending or processing data before the handshake is confirmed. See RFC 8446 4032 // for more information. 4033 // 4034 // As a server, if early data is accepted, |SSL_do_handshake| will complete as 4035 // soon as the ClientHello is processed and server flight sent. |SSL_write| may 4036 // be used to send half-RTT data. |SSL_read| will consume early data and 4037 // transition to 1-RTT data as appropriate. Prior to the transition, 4038 // |SSL_in_init| will report the handshake is still in progress. Callers may use 4039 // it or |SSL_in_early_data| to defer or reject requests as needed. 4040 // 4041 // Early data as a client is more complex. If the offered session (see 4042 // |SSL_set_session|) is 0-RTT-capable, the handshake will return after sending 4043 // the ClientHello. The predicted peer certificates and ALPN protocol will be 4044 // available via the usual APIs. |SSL_write| will write early data, up to the 4045 // session's limit. Writes past this limit and |SSL_read| will complete the 4046 // handshake before continuing. Callers may also call |SSL_do_handshake| again 4047 // to complete the handshake sooner. 4048 // 4049 // If the server accepts early data, the handshake will succeed. |SSL_read| and 4050 // |SSL_write| will then act as in a 1-RTT handshake. The peer certificates and 4051 // ALPN protocol will be as predicted and need not be re-queried. 4052 // 4053 // If the server rejects early data, |SSL_do_handshake| (and thus |SSL_read| and 4054 // |SSL_write|) will then fail with |SSL_get_error| returning 4055 // |SSL_ERROR_EARLY_DATA_REJECTED|. The caller should treat this as a connection 4056 // error and most likely perform a high-level retry. Note the server may still 4057 // have processed the early data due to attacker replays. 4058 // 4059 // To then continue the handshake on the original connection, use 4060 // |SSL_reset_early_data_reject|. The connection will then behave as one which 4061 // had not yet completed the handshake. This allows a faster retry than making a 4062 // fresh connection. |SSL_do_handshake| will complete the full handshake, 4063 // possibly resulting in different peer certificates, ALPN protocol, and other 4064 // properties. The caller must disregard any values from before the reset and 4065 // query again. 4066 // 4067 // Finally, to implement the fallback described in RFC 8446 appendix D.3, retry 4068 // on a fresh connection without 0-RTT if the handshake fails with 4069 // |SSL_R_WRONG_VERSION_ON_EARLY_DATA|. 4070 4071 // SSL_CTX_set_early_data_enabled sets whether early data is allowed to be used 4072 // with resumptions using |ctx|. 4073 OPENSSL_EXPORT void SSL_CTX_set_early_data_enabled(SSL_CTX *ctx, int enabled); 4074 4075 // SSL_set_early_data_enabled sets whether early data is allowed to be used 4076 // with resumptions using |ssl|. See |SSL_CTX_set_early_data_enabled| for more 4077 // information. 4078 OPENSSL_EXPORT void SSL_set_early_data_enabled(SSL *ssl, int enabled); 4079 4080 // SSL_in_early_data returns one if |ssl| has a pending handshake that has 4081 // progressed enough to send or receive early data. Clients may call |SSL_write| 4082 // to send early data, but |SSL_read| will complete the handshake before 4083 // accepting application data. Servers may call |SSL_read| to read early data 4084 // and |SSL_write| to send half-RTT data. 4085 OPENSSL_EXPORT int SSL_in_early_data(const SSL *ssl); 4086 4087 // SSL_SESSION_early_data_capable returns whether early data would have been 4088 // attempted with |session| if enabled. 4089 OPENSSL_EXPORT int SSL_SESSION_early_data_capable(const SSL_SESSION *session); 4090 4091 // SSL_SESSION_copy_without_early_data returns a copy of |session| with early 4092 // data disabled. If |session| already does not support early data, it returns 4093 // |session| with the reference count increased. The caller takes ownership of 4094 // the result and must release it with |SSL_SESSION_free|. 4095 // 4096 // This function may be used on the client to clear early data support from 4097 // existing sessions when the server rejects early data. In particular, 4098 // |SSL_R_WRONG_VERSION_ON_EARLY_DATA| requires a fresh connection to retry, and 4099 // the client would not want 0-RTT enabled for the next connection attempt. 4100 OPENSSL_EXPORT SSL_SESSION *SSL_SESSION_copy_without_early_data( 4101 SSL_SESSION *session); 4102 4103 // SSL_early_data_accepted returns whether early data was accepted on the 4104 // handshake performed by |ssl|. 4105 OPENSSL_EXPORT int SSL_early_data_accepted(const SSL *ssl); 4106 4107 // SSL_reset_early_data_reject resets |ssl| after an early data reject. All 4108 // 0-RTT state is discarded, including any pending |SSL_write| calls. The caller 4109 // should treat |ssl| as a logically fresh connection, usually by driving the 4110 // handshake to completion using |SSL_do_handshake|. 4111 // 4112 // It is an error to call this function on an |SSL| object that is not signaling 4113 // |SSL_ERROR_EARLY_DATA_REJECTED|. 4114 OPENSSL_EXPORT void SSL_reset_early_data_reject(SSL *ssl); 4115 4116 // SSL_get_ticket_age_skew returns the difference, in seconds, between the 4117 // client-sent ticket age and the server-computed value in TLS 1.3 server 4118 // connections which resumed a session. 4119 OPENSSL_EXPORT int32_t SSL_get_ticket_age_skew(const SSL *ssl); 4120 4121 // An ssl_early_data_reason_t describes why 0-RTT was accepted or rejected. 4122 // These values are persisted to logs. Entries should not be renumbered and 4123 // numeric values should never be reused. 4124 enum ssl_early_data_reason_t BORINGSSL_ENUM_INT { 4125 // The handshake has not progressed far enough for the 0-RTT status to be 4126 // known. 4127 ssl_early_data_unknown = 0, 4128 // 0-RTT is disabled for this connection. 4129 ssl_early_data_disabled = 1, 4130 // 0-RTT was accepted. 4131 ssl_early_data_accepted = 2, 4132 // The negotiated protocol version does not support 0-RTT. 4133 ssl_early_data_protocol_version = 3, 4134 // The peer declined to offer or accept 0-RTT for an unknown reason. 4135 ssl_early_data_peer_declined = 4, 4136 // The client did not offer a session. 4137 ssl_early_data_no_session_offered = 5, 4138 // The server declined to resume the session. 4139 ssl_early_data_session_not_resumed = 6, 4140 // The session does not support 0-RTT. 4141 ssl_early_data_unsupported_for_session = 7, 4142 // The server sent a HelloRetryRequest. 4143 ssl_early_data_hello_retry_request = 8, 4144 // The negotiated ALPN protocol did not match the session. 4145 ssl_early_data_alpn_mismatch = 9, 4146 // The connection negotiated Channel ID, which is incompatible with 0-RTT. 4147 ssl_early_data_channel_id = 10, 4148 // Value 11 is reserved. (It has historically |ssl_early_data_token_binding|.) 4149 // The client and server ticket age were too far apart. 4150 ssl_early_data_ticket_age_skew = 12, 4151 // QUIC parameters differ between this connection and the original. 4152 ssl_early_data_quic_parameter_mismatch = 13, 4153 // The application settings did not match the session. 4154 ssl_early_data_alps_mismatch = 14, 4155 // The value of the largest entry. 4156 ssl_early_data_reason_max_value = ssl_early_data_alps_mismatch, 4157 }; 4158 4159 // SSL_get_early_data_reason returns details why 0-RTT was accepted or rejected 4160 // on |ssl|. This is primarily useful on the server. 4161 OPENSSL_EXPORT enum ssl_early_data_reason_t SSL_get_early_data_reason( 4162 const SSL *ssl); 4163 4164 // SSL_early_data_reason_string returns a string representation for |reason|, or 4165 // NULL if |reason| is unknown. This function may be used for logging. 4166 OPENSSL_EXPORT const char *SSL_early_data_reason_string( 4167 enum ssl_early_data_reason_t reason); 4168 4169 4170 // Encrypted ClientHello. 4171 // 4172 // ECH is a mechanism for encrypting the entire ClientHello message in TLS 1.3. 4173 // This can prevent observers from seeing cleartext information about the 4174 // connection, such as the server_name extension. 4175 // 4176 // By default, BoringSSL will treat the server name, session ticket, and client 4177 // certificate as secret, but most other parameters, such as the ALPN protocol 4178 // list will be treated as public and sent in the cleartext ClientHello. Other 4179 // APIs may be added for applications with different secrecy requirements. 4180 // 4181 // ECH support in BoringSSL is still experimental and under development. 4182 // 4183 // See https://tools.ietf.org/html/draft-ietf-tls-esni-13. 4184 4185 // SSL_set_enable_ech_grease configures whether the client will send a GREASE 4186 // ECH extension when no supported ECHConfig is available. 4187 OPENSSL_EXPORT void SSL_set_enable_ech_grease(SSL *ssl, int enable); 4188 4189 // SSL_set1_ech_config_list configures |ssl| to, as a client, offer ECH with the 4190 // specified configuration. |ech_config_list| should contain a serialized 4191 // ECHConfigList structure. It returns one on success and zero on error. 4192 // 4193 // This function returns an error if the input is malformed. If the input is 4194 // valid but none of the ECHConfigs implement supported parameters, it will 4195 // return success and proceed without ECH. 4196 // 4197 // If a supported ECHConfig is found, |ssl| will encrypt the true ClientHello 4198 // parameters. If the server cannot decrypt it, e.g. due to a key mismatch, ECH 4199 // has a recovery flow. |ssl| will handshake using the cleartext parameters, 4200 // including a public name in the ECHConfig. If using 4201 // |SSL_CTX_set_custom_verify|, callers should use |SSL_get0_ech_name_override| 4202 // to verify the certificate with the public name. If using the built-in 4203 // verifier, the |X509_STORE_CTX| will be configured automatically. 4204 // 4205 // If no other errors are found in this handshake, it will fail with 4206 // |SSL_R_ECH_REJECTED|. Since it didn't use the true parameters, the connection 4207 // cannot be used for application data. Instead, callers should handle this 4208 // error by calling |SSL_get0_ech_retry_configs| and retrying the connection 4209 // with updated ECH parameters. If the retry also fails with 4210 // |SSL_R_ECH_REJECTED|, the caller should report a connection failure. 4211 OPENSSL_EXPORT int SSL_set1_ech_config_list(SSL *ssl, 4212 const uint8_t *ech_config_list, 4213 size_t ech_config_list_len); 4214 4215 // SSL_get0_ech_name_override, if |ssl| is a client and the server rejected ECH, 4216 // sets |*out_name| and |*out_name_len| to point to a buffer containing the ECH 4217 // public name. Otherwise, the buffer will be empty. 4218 // 4219 // When offering ECH as a client, this function should be called during the 4220 // certificate verification callback (see |SSL_CTX_set_custom_verify|). If 4221 // |*out_name_len| is non-zero, the caller should verify the certificate against 4222 // the result, interpreted as a DNS name, rather than the true server name. In 4223 // this case, the handshake will never succeed and is only used to authenticate 4224 // retry configs. See also |SSL_get0_ech_retry_configs|. 4225 OPENSSL_EXPORT void SSL_get0_ech_name_override(const SSL *ssl, 4226 const char **out_name, 4227 size_t *out_name_len); 4228 4229 // SSL_get0_ech_retry_configs sets |*out_retry_configs| and 4230 // |*out_retry_configs_len| to a buffer containing a serialized ECHConfigList. 4231 // If the server did not provide an ECHConfigList, |*out_retry_configs_len| will 4232 // be zero. 4233 // 4234 // When handling an |SSL_R_ECH_REJECTED| error code as a client, callers should 4235 // use this function to recover from potential key mismatches. If the result is 4236 // non-empty, the caller should retry the connection, passing this buffer to 4237 // |SSL_set1_ech_config_list|. If the result is empty, the server has rolled 4238 // back ECH support, and the caller should retry without ECH. 4239 // 4240 // This function must only be called in response to an |SSL_R_ECH_REJECTED| 4241 // error code. Calling this function on |ssl|s that have not authenticated the 4242 // rejection handshake will assert in debug builds and otherwise return an 4243 // unparsable list. 4244 OPENSSL_EXPORT void SSL_get0_ech_retry_configs( 4245 const SSL *ssl, const uint8_t **out_retry_configs, 4246 size_t *out_retry_configs_len); 4247 4248 // SSL_marshal_ech_config constructs a new serialized ECHConfig. On success, it 4249 // sets |*out| to a newly-allocated buffer containing the result and |*out_len| 4250 // to the size of the buffer. The caller must call |OPENSSL_free| on |*out| to 4251 // release the memory. On failure, it returns zero. 4252 // 4253 // The |config_id| field is a single byte identifier for the ECHConfig. Reusing 4254 // config IDs is allowed, but if multiple ECHConfigs with the same config ID are 4255 // active at a time, server load may increase. See 4256 // |SSL_ECH_KEYS_has_duplicate_config_id|. 4257 // 4258 // The public key and KEM algorithm are taken from |key|. |public_name| is the 4259 // DNS name used to authenticate the recovery flow. |max_name_len| should be the 4260 // length of the longest name in the ECHConfig's anonymity set and influences 4261 // client padding decisions. 4262 OPENSSL_EXPORT int SSL_marshal_ech_config(uint8_t **out, size_t *out_len, 4263 uint8_t config_id, 4264 const EVP_HPKE_KEY *key, 4265 const char *public_name, 4266 size_t max_name_len); 4267 4268 // SSL_ECH_KEYS_new returns a newly-allocated |SSL_ECH_KEYS| or NULL on error. 4269 OPENSSL_EXPORT SSL_ECH_KEYS *SSL_ECH_KEYS_new(void); 4270 4271 // SSL_ECH_KEYS_up_ref increments the reference count of |keys|. 4272 OPENSSL_EXPORT void SSL_ECH_KEYS_up_ref(SSL_ECH_KEYS *keys); 4273 4274 // SSL_ECH_KEYS_free releases memory associated with |keys|. 4275 OPENSSL_EXPORT void SSL_ECH_KEYS_free(SSL_ECH_KEYS *keys); 4276 4277 // SSL_ECH_KEYS_add decodes |ech_config| as an ECHConfig and appends it with 4278 // |key| to |keys|. If |is_retry_config| is non-zero, this config will be 4279 // returned to the client on configuration mismatch. It returns one on success 4280 // and zero on error. 4281 // 4282 // This function should be called successively to register each ECHConfig in 4283 // decreasing order of preference. This configuration must be completed before 4284 // setting |keys| on an |SSL_CTX| with |SSL_CTX_set1_ech_keys|. After that 4285 // point, |keys| is immutable; no more ECHConfig values may be added. 4286 // 4287 // See also |SSL_CTX_set1_ech_keys|. 4288 OPENSSL_EXPORT int SSL_ECH_KEYS_add(SSL_ECH_KEYS *keys, int is_retry_config, 4289 const uint8_t *ech_config, 4290 size_t ech_config_len, 4291 const EVP_HPKE_KEY *key); 4292 4293 // SSL_ECH_KEYS_has_duplicate_config_id returns one if |keys| has duplicate 4294 // config IDs or zero otherwise. Duplicate config IDs still work, but may 4295 // increase server load due to trial decryption. 4296 OPENSSL_EXPORT int SSL_ECH_KEYS_has_duplicate_config_id( 4297 const SSL_ECH_KEYS *keys); 4298 4299 // SSL_ECH_KEYS_marshal_retry_configs serializes the retry configs in |keys| as 4300 // an ECHConfigList. On success, it sets |*out| to a newly-allocated buffer 4301 // containing the result and |*out_len| to the size of the buffer. The caller 4302 // must call |OPENSSL_free| on |*out| to release the memory. On failure, it 4303 // returns zero. 4304 // 4305 // This output may be advertised to clients in DNS. 4306 OPENSSL_EXPORT int SSL_ECH_KEYS_marshal_retry_configs(const SSL_ECH_KEYS *keys, 4307 uint8_t **out, 4308 size_t *out_len); 4309 4310 // SSL_CTX_set1_ech_keys configures |ctx| to use |keys| to decrypt encrypted 4311 // ClientHellos. It returns one on success, and zero on failure. If |keys| does 4312 // not contain any retry configs, this function will fail. Retry configs are 4313 // marked as such when they are added to |keys| with |SSL_ECH_KEYS_add|. 4314 // 4315 // Once |keys| has been passed to this function, it is immutable. Unlike most 4316 // |SSL_CTX| configuration functions, this function may be called even if |ctx| 4317 // already has associated connections on multiple threads. This may be used to 4318 // rotate keys in a long-lived server process. 4319 // 4320 // The configured ECHConfig values should also be advertised out-of-band via DNS 4321 // (see draft-ietf-dnsop-svcb-https). Before advertising an ECHConfig in DNS, 4322 // deployments should ensure all instances of the service are configured with 4323 // the ECHConfig and corresponding private key. 4324 // 4325 // Only the most recent fully-deployed ECHConfigs should be advertised in DNS. 4326 // |keys| may contain a newer set if those ECHConfigs are mid-deployment. It 4327 // should also contain older sets, until the DNS change has rolled out and the 4328 // old records have expired from caches. 4329 // 4330 // If there is a mismatch, |SSL| objects associated with |ctx| will complete the 4331 // handshake using the cleartext ClientHello and send updated ECHConfig values 4332 // to the client. The client will then retry to recover, but with a latency 4333 // penalty. This recovery flow depends on the public name in the ECHConfig. 4334 // Before advertising an ECHConfig in DNS, deployments must ensure all instances 4335 // of the service can present a valid certificate for the public name. 4336 // 4337 // BoringSSL negotiates ECH before certificate selection callbacks are called, 4338 // including |SSL_CTX_set_select_certificate_cb|. If ECH is negotiated, the 4339 // reported |SSL_CLIENT_HELLO| structure and |SSL_get_servername| function will 4340 // transparently reflect the inner ClientHello. Callers should select parameters 4341 // based on these values to correctly handle ECH as well as the recovery flow. 4342 OPENSSL_EXPORT int SSL_CTX_set1_ech_keys(SSL_CTX *ctx, SSL_ECH_KEYS *keys); 4343 4344 // SSL_ech_accepted returns one if |ssl| negotiated ECH and zero otherwise. 4345 OPENSSL_EXPORT int SSL_ech_accepted(const SSL *ssl); 4346 4347 4348 // Alerts. 4349 // 4350 // TLS uses alerts to signal error conditions. Alerts have a type (warning or 4351 // fatal) and description. OpenSSL internally handles fatal alerts with 4352 // dedicated error codes (see |SSL_AD_REASON_OFFSET|). Except for close_notify, 4353 // warning alerts are silently ignored and may only be surfaced with 4354 // |SSL_CTX_set_info_callback|. 4355 4356 // SSL_AD_REASON_OFFSET is the offset between error reasons and |SSL_AD_*| 4357 // values. Any error code under |ERR_LIB_SSL| with an error reason above this 4358 // value corresponds to an alert description. Consumers may add or subtract 4359 // |SSL_AD_REASON_OFFSET| to convert between them. 4360 // 4361 // make_errors.go reserves error codes above 1000 for manually-assigned errors. 4362 // This value must be kept in sync with reservedReasonCode in make_errors.h 4363 #define SSL_AD_REASON_OFFSET 1000 4364 4365 // SSL_AD_* are alert descriptions. 4366 #define SSL_AD_CLOSE_NOTIFY SSL3_AD_CLOSE_NOTIFY 4367 #define SSL_AD_UNEXPECTED_MESSAGE SSL3_AD_UNEXPECTED_MESSAGE 4368 #define SSL_AD_BAD_RECORD_MAC SSL3_AD_BAD_RECORD_MAC 4369 #define SSL_AD_DECRYPTION_FAILED TLS1_AD_DECRYPTION_FAILED 4370 #define SSL_AD_RECORD_OVERFLOW TLS1_AD_RECORD_OVERFLOW 4371 #define SSL_AD_DECOMPRESSION_FAILURE SSL3_AD_DECOMPRESSION_FAILURE 4372 #define SSL_AD_HANDSHAKE_FAILURE SSL3_AD_HANDSHAKE_FAILURE 4373 #define SSL_AD_NO_CERTIFICATE SSL3_AD_NO_CERTIFICATE // Legacy SSL 3.0 value 4374 #define SSL_AD_BAD_CERTIFICATE SSL3_AD_BAD_CERTIFICATE 4375 #define SSL_AD_UNSUPPORTED_CERTIFICATE SSL3_AD_UNSUPPORTED_CERTIFICATE 4376 #define SSL_AD_CERTIFICATE_REVOKED SSL3_AD_CERTIFICATE_REVOKED 4377 #define SSL_AD_CERTIFICATE_EXPIRED SSL3_AD_CERTIFICATE_EXPIRED 4378 #define SSL_AD_CERTIFICATE_UNKNOWN SSL3_AD_CERTIFICATE_UNKNOWN 4379 #define SSL_AD_ILLEGAL_PARAMETER SSL3_AD_ILLEGAL_PARAMETER 4380 #define SSL_AD_UNKNOWN_CA TLS1_AD_UNKNOWN_CA 4381 #define SSL_AD_ACCESS_DENIED TLS1_AD_ACCESS_DENIED 4382 #define SSL_AD_DECODE_ERROR TLS1_AD_DECODE_ERROR 4383 #define SSL_AD_DECRYPT_ERROR TLS1_AD_DECRYPT_ERROR 4384 #define SSL_AD_EXPORT_RESTRICTION TLS1_AD_EXPORT_RESTRICTION 4385 #define SSL_AD_PROTOCOL_VERSION TLS1_AD_PROTOCOL_VERSION 4386 #define SSL_AD_INSUFFICIENT_SECURITY TLS1_AD_INSUFFICIENT_SECURITY 4387 #define SSL_AD_INTERNAL_ERROR TLS1_AD_INTERNAL_ERROR 4388 #define SSL_AD_INAPPROPRIATE_FALLBACK SSL3_AD_INAPPROPRIATE_FALLBACK 4389 #define SSL_AD_USER_CANCELLED TLS1_AD_USER_CANCELLED 4390 #define SSL_AD_NO_RENEGOTIATION TLS1_AD_NO_RENEGOTIATION 4391 #define SSL_AD_MISSING_EXTENSION TLS1_AD_MISSING_EXTENSION 4392 #define SSL_AD_UNSUPPORTED_EXTENSION TLS1_AD_UNSUPPORTED_EXTENSION 4393 #define SSL_AD_CERTIFICATE_UNOBTAINABLE TLS1_AD_CERTIFICATE_UNOBTAINABLE 4394 #define SSL_AD_UNRECOGNIZED_NAME TLS1_AD_UNRECOGNIZED_NAME 4395 #define SSL_AD_BAD_CERTIFICATE_STATUS_RESPONSE \ 4396 TLS1_AD_BAD_CERTIFICATE_STATUS_RESPONSE 4397 #define SSL_AD_BAD_CERTIFICATE_HASH_VALUE TLS1_AD_BAD_CERTIFICATE_HASH_VALUE 4398 #define SSL_AD_UNKNOWN_PSK_IDENTITY TLS1_AD_UNKNOWN_PSK_IDENTITY 4399 #define SSL_AD_CERTIFICATE_REQUIRED TLS1_AD_CERTIFICATE_REQUIRED 4400 #define SSL_AD_NO_APPLICATION_PROTOCOL TLS1_AD_NO_APPLICATION_PROTOCOL 4401 #define SSL_AD_ECH_REQUIRED TLS1_AD_ECH_REQUIRED 4402 4403 // SSL_alert_type_string_long returns a string description of |value| as an 4404 // alert type (warning or fatal). 4405 OPENSSL_EXPORT const char *SSL_alert_type_string_long(int value); 4406 4407 // SSL_alert_desc_string_long returns a string description of |value| as an 4408 // alert description or "unknown" if unknown. 4409 OPENSSL_EXPORT const char *SSL_alert_desc_string_long(int value); 4410 4411 // SSL_send_fatal_alert sends a fatal alert over |ssl| of the specified type, 4412 // which should be one of the |SSL_AD_*| constants. It returns one on success 4413 // and <= 0 on error. The caller should pass the return value into 4414 // |SSL_get_error| to determine how to proceed. Once this function has been 4415 // called, future calls to |SSL_write| will fail. 4416 // 4417 // If retrying a failed operation due to |SSL_ERROR_WANT_WRITE|, subsequent 4418 // calls must use the same |alert| parameter. 4419 OPENSSL_EXPORT int SSL_send_fatal_alert(SSL *ssl, uint8_t alert); 4420 4421 4422 // ex_data functions. 4423 // 4424 // See |ex_data.h| for details. 4425 4426 OPENSSL_EXPORT int SSL_set_ex_data(SSL *ssl, int idx, void *data); 4427 OPENSSL_EXPORT void *SSL_get_ex_data(const SSL *ssl, int idx); 4428 OPENSSL_EXPORT int SSL_get_ex_new_index(long argl, void *argp, 4429 CRYPTO_EX_unused *unused, 4430 CRYPTO_EX_dup *dup_unused, 4431 CRYPTO_EX_free *free_func); 4432 4433 OPENSSL_EXPORT int SSL_SESSION_set_ex_data(SSL_SESSION *session, int idx, 4434 void *data); 4435 OPENSSL_EXPORT void *SSL_SESSION_get_ex_data(const SSL_SESSION *session, 4436 int idx); 4437 OPENSSL_EXPORT int SSL_SESSION_get_ex_new_index(long argl, void *argp, 4438 CRYPTO_EX_unused *unused, 4439 CRYPTO_EX_dup *dup_unused, 4440 CRYPTO_EX_free *free_func); 4441 4442 OPENSSL_EXPORT int SSL_CTX_set_ex_data(SSL_CTX *ctx, int idx, void *data); 4443 OPENSSL_EXPORT void *SSL_CTX_get_ex_data(const SSL_CTX *ctx, int idx); 4444 OPENSSL_EXPORT int SSL_CTX_get_ex_new_index(long argl, void *argp, 4445 CRYPTO_EX_unused *unused, 4446 CRYPTO_EX_dup *dup_unused, 4447 CRYPTO_EX_free *free_func); 4448 4449 OPENSSL_EXPORT int SSL_CREDENTIAL_set_ex_data(SSL_CREDENTIAL *cred, int idx, 4450 void *data); 4451 OPENSSL_EXPORT void *SSL_CREDENTIAL_get_ex_data(const SSL_CREDENTIAL *cred, 4452 int idx); 4453 OPENSSL_EXPORT int SSL_CREDENTIAL_get_ex_new_index(long argl, void *argp, 4454 CRYPTO_EX_unused *unused, 4455 CRYPTO_EX_dup *dup_unused, 4456 CRYPTO_EX_free *free_func); 4457 4458 4459 // Low-level record-layer state. 4460 4461 // SSL_get_ivs sets |*out_iv_len| to the length of the IVs for the ciphers 4462 // underlying |ssl| and sets |*out_read_iv| and |*out_write_iv| to point to the 4463 // current IVs for the read and write directions. This is only meaningful for 4464 // connections with implicit IVs (i.e. CBC mode with TLS 1.0). 4465 // 4466 // It returns one on success or zero on error. 4467 OPENSSL_EXPORT int SSL_get_ivs(const SSL *ssl, const uint8_t **out_read_iv, 4468 const uint8_t **out_write_iv, 4469 size_t *out_iv_len); 4470 4471 // SSL_get_key_block_len returns the length of |ssl|'s key block, for TLS 1.2 4472 // and below. It is an error to call this function during a handshake, or if 4473 // |ssl| negotiated TLS 1.3. 4474 OPENSSL_EXPORT size_t SSL_get_key_block_len(const SSL *ssl); 4475 4476 // SSL_generate_key_block generates |out_len| bytes of key material for |ssl|'s 4477 // current connection state, for TLS 1.2 and below. It is an error to call this 4478 // function during a handshake, or if |ssl| negotiated TLS 1.3. 4479 OPENSSL_EXPORT int SSL_generate_key_block(const SSL *ssl, uint8_t *out, 4480 size_t out_len); 4481 4482 // SSL_get_read_sequence returns, in TLS, the expected sequence number of the 4483 // next incoming record in the current epoch. 4484 // 4485 // TODO(crbug.com/42290608): In DTLS, it returns the maximum sequence number 4486 // received in the current epoch (for some notion of "current" specific to 4487 // BoringSSL) and includes the epoch number in the two most significant bytes, 4488 // but this is deprecated. Use |SSL_get_dtls_read_sequence| instead. 4489 OPENSSL_EXPORT uint64_t SSL_get_read_sequence(const SSL *ssl); 4490 4491 // SSL_get_write_sequence returns the sequence number of the next outgoing 4492 // record in the current epoch. 4493 // 4494 // TODO(crbug.com/42290608): In DTLS, it includes the epoch number in the two 4495 // most significant bytes, but this is deprecated. Use 4496 // |SSL_get_dtls_write_sequence| instead. 4497 OPENSSL_EXPORT uint64_t SSL_get_write_sequence(const SSL *ssl); 4498 4499 // SSL_CTX_set_record_protocol_version returns whether |version| is zero. 4500 OPENSSL_EXPORT int SSL_CTX_set_record_protocol_version(SSL_CTX *ctx, 4501 int version); 4502 4503 // SSL_is_dtls_handshake_idle returns one |ssl|'s handshake is idle and zero if 4504 // it is busy. The handshake is considered idle if all of the following are 4505 // true: 4506 // 4507 // - |ssl| is not mid handshake or post-handshake transaction. 4508 // - In DTLS 1.3, all sent handshake messages have been acknowledged. That is, 4509 // |ssl| does not have data to retransmit. 4510 // - All received handshake data has been processed. That is, |ssl| has no 4511 // buffered partial or out-of-order messages. 4512 // 4513 // If any condition is false, the handshake is considered busy. If this function 4514 // reports the handshake is busy, it is expected that the handshake will become 4515 // idle after short timers and a few roundtrips of successful communication. 4516 // However, this is not guaranteed if, e.g., the peer misbehaves or sends many 4517 // KeyUpdates. 4518 // 4519 // WARNING: In DTLS 1.3, this function may return one while multiple active read 4520 // epochs exist in |ssl|. 4521 // 4522 // WARNING: In DTLS 1.2 (or earlier), if |ssl| is the role that speaks last, it 4523 // retains its final flight for retransmission in case of loss. There is no 4524 // explicit protocol signal for when this completes, though after receiving 4525 // application data and/or a timeout it is likely that this is no longer needed. 4526 // BoringSSL does not currently evaluate either condition and leaves it it to 4527 // the caller to determine whether this is now unnecessary. This applies when 4528 // |ssl| is a server for full handshakes and when |ssl| is a client for full 4529 // handshakes. 4530 OPENSSL_EXPORT int SSL_is_dtls_handshake_idle(const SSL *ssl); 4531 4532 // SSL_get_dtls_handshake_read_seq returns the 16-bit sequence number of the 4533 // next DTLS handshake message to be read, or 0x10000 if handshake message 4534 // 0xffff (the maximum) has already been read. 4535 OPENSSL_EXPORT uint32_t SSL_get_dtls_handshake_read_seq(const SSL *ssl); 4536 4537 // SSL_get_dtls_handshake_write_seq returns the 16-bit sequence number of the 4538 // next DTLS handshake message to be written or 0x10000 if handshake message 4539 // 0xffff (the maximum) has already been written. 4540 OPENSSL_EXPORT uint32_t SSL_get_dtls_handshake_write_seq(const SSL *ssl); 4541 4542 // SSL_get_dtls_read_epoch returns the highest available DTLS read epoch in 4543 // |ssl|. In DTLS 1.3, |ssl| may have earlier epochs also active, sometimes to 4544 // optionally improve handling of reordered packets and sometimes as an 4545 // important part of the protocol correctness in the face of packet loss. 4546 // 4547 // The failure conditions of |SSL_get_dtls_read_traffic_secret| and 4548 // |SSL_get_dtls_read_sequence| can be used to determine if past epochs are 4549 // active. 4550 OPENSSL_EXPORT uint16_t SSL_get_dtls_read_epoch(const SSL *ssl); 4551 4552 // SSL_get_dtls_write_epoch returns the current DTLS write epoch. If the 4553 // handshake is idle (see |SSL_is_dtls_handshake_idle|), no other write epochs 4554 // will be active. 4555 OPENSSL_EXPORT uint16_t SSL_get_dtls_write_epoch(const SSL *ssl); 4556 4557 // SSL_get_dtls_read_sequence returns one more than the sequence number of the 4558 // highest record received in |epoch|. If no records have been received in 4559 // |epoch|. If the epoch does not exist, it returns |UINT64_MAX|. 4560 // 4561 // It is safe to discard all sequence numbers less than the return value of this 4562 // function. The sequence numbers returned by this function do not include the 4563 // epoch number in the upper 16 bits. 4564 OPENSSL_EXPORT uint64_t SSL_get_dtls_read_sequence(const SSL *ssl, 4565 uint16_t epoch); 4566 4567 // SSL_get_dtls_write_sequence returns the sequence number of the next record to 4568 // be sent in |epoch|. If the epoch does not exist, it returns |UINT64_MAX|. 4569 // 4570 // The sequence numbers returned by this function do not include the epoch 4571 // number in the upper 16 bits. 4572 OPENSSL_EXPORT uint64_t SSL_get_dtls_write_sequence(const SSL *ssl, 4573 uint16_t epoch); 4574 4575 // SSL_get_dtls_read_traffic_secret looks up the traffic secret for read epoch 4576 // |epoch|. If the epoch exists and is an encrypted (not epoch zero) DTLS 1.3 4577 // epoch, it sets |*out_data| and |*out_len| to a buffer containing the secrets 4578 // and returns one. Otherwise, it returns zero. The buffer is valid until the 4579 // next operation on |ssl|. 4580 OPENSSL_EXPORT int SSL_get_dtls_read_traffic_secret(const SSL *ssl, 4581 const uint8_t **out_data, 4582 size_t *out_len, 4583 uint16_t epoch); 4584 4585 // SSL_get_dtls_write_traffic_secret looks up the traffic secret for write epoch 4586 // |epoch|. If the epoch exists and is an encrypted (not epoch zero) DTLS 1.3 4587 // epoch, it sets |*out_data| and |*out_len| to a buffer containing the secrets 4588 // and returns one. Otherwise, it returns zero. The buffer is valid until the 4589 // next operation on |ssl|. 4590 OPENSSL_EXPORT int SSL_get_dtls_write_traffic_secret(const SSL *ssl, 4591 const uint8_t **out_data, 4592 size_t *out_len, 4593 uint16_t epoch); 4594 4595 4596 // Handshake hints. 4597 // 4598 // WARNING: Contact the BoringSSL team before using this API. While this 4599 // mechanism was designed to gracefully recover from version skew and 4600 // configuration mismatch, splitting a single TLS server into multiple services 4601 // is complex. 4602 // 4603 // Some server deployments make asynchronous RPC calls in both ClientHello 4604 // dispatch and private key operations. In TLS handshakes where the private key 4605 // operation occurs in the first round-trip, this results in two consecutive RPC 4606 // round-trips. Handshake hints allow the RPC service to predict a signature. 4607 // If correctly predicted, this can skip the second RPC call. 4608 // 4609 // First, the server installs a certificate selection callback (see 4610 // |SSL_CTX_set_select_certificate_cb|). When that is called, it performs the 4611 // RPC as before, but includes the ClientHello and a capabilities string from 4612 // |SSL_serialize_capabilities|. 4613 // 4614 // Next, the RPC service creates its own |SSL| object, applies the results of 4615 // certificate selection, calls |SSL_request_handshake_hints|, and runs the 4616 // handshake. If this successfully computes handshake hints (see 4617 // |SSL_serialize_handshake_hints|), the RPC server should send the hints 4618 // alongside any certificate selection results. 4619 // 4620 // Finally, the server calls |SSL_set_handshake_hints| and applies any 4621 // configuration from the RPC server. It then completes the handshake as before. 4622 // If the hints apply, BoringSSL will use the predicted signature and skip the 4623 // private key callbacks. Otherwise, BoringSSL will call private key callbacks 4624 // to generate a signature as before. 4625 // 4626 // Callers should synchronize configuration across the two services. 4627 // Configuration mismatches and some cases of version skew are not fatal, but 4628 // may result in the hints not applying. Additionally, some handshake flows use 4629 // the private key in later round-trips, such as TLS 1.3 HelloRetryRequest. In 4630 // those cases, BoringSSL will not predict a signature as there is no benefit. 4631 // Callers must allow for handshakes to complete without a predicted signature. 4632 4633 // SSL_serialize_capabilities writes an opaque byte string to |out| describing 4634 // some of |ssl|'s capabilities. It returns one on success and zero on error. 4635 // 4636 // This string is used by BoringSSL internally to reduce the impact of version 4637 // skew. 4638 OPENSSL_EXPORT int SSL_serialize_capabilities(const SSL *ssl, CBB *out); 4639 4640 // SSL_request_handshake_hints configures |ssl| to generate a handshake hint for 4641 // |client_hello|. It returns one on success and zero on error. |client_hello| 4642 // should contain a serialized ClientHello structure, from the |client_hello| 4643 // and |client_hello_len| fields of the |SSL_CLIENT_HELLO| structure. 4644 // |capabilities| should contain the output of |SSL_serialize_capabilities|. 4645 // 4646 // When configured, |ssl| will perform no I/O (so there is no need to configure 4647 // |BIO|s). For QUIC, the caller should still configure an |SSL_QUIC_METHOD|, 4648 // but the callbacks themselves will never be called and may be left NULL or 4649 // report failure. |SSL_provide_quic_data| also should not be called. 4650 // 4651 // If hint generation is successful, |SSL_do_handshake| will stop the handshake 4652 // early with |SSL_get_error| returning |SSL_ERROR_HANDSHAKE_HINTS_READY|. At 4653 // this point, the caller should run |SSL_serialize_handshake_hints| to extract 4654 // the resulting hints. 4655 // 4656 // Hint generation may fail if, e.g., |ssl| was unable to process the 4657 // ClientHello. Callers should then complete the certificate selection RPC and 4658 // continue the original handshake with no hint. It will likely fail, but this 4659 // reports the correct alert to the client and is more robust in case of 4660 // mismatch. 4661 OPENSSL_EXPORT int SSL_request_handshake_hints(SSL *ssl, 4662 const uint8_t *client_hello, 4663 size_t client_hello_len, 4664 const uint8_t *capabilities, 4665 size_t capabilities_len); 4666 4667 // SSL_serialize_handshake_hints writes an opaque byte string to |out| 4668 // containing the handshake hints computed by |out|. It returns one on success 4669 // and zero on error. This function should only be called if 4670 // |SSL_request_handshake_hints| was configured and the handshake terminated 4671 // with |SSL_ERROR_HANDSHAKE_HINTS_READY|. 4672 // 4673 // This string may be passed to |SSL_set_handshake_hints| on another |SSL| to 4674 // avoid an extra signature call. 4675 OPENSSL_EXPORT int SSL_serialize_handshake_hints(const SSL *ssl, CBB *out); 4676 4677 // SSL_set_handshake_hints configures |ssl| to use |hints| as handshake hints. 4678 // It returns one on success and zero on error. The handshake will then continue 4679 // as before, but apply predicted values from |hints| where applicable. 4680 // 4681 // Hints may contain connection and session secrets, so they must not leak and 4682 // must come from a source trusted to terminate the connection. However, they 4683 // will not change |ssl|'s configuration. The caller is responsible for 4684 // serializing and applying options from the RPC server as needed. This ensures 4685 // |ssl|'s behavior is self-consistent and consistent with the caller's local 4686 // decisions. 4687 OPENSSL_EXPORT int SSL_set_handshake_hints(SSL *ssl, const uint8_t *hints, 4688 size_t hints_len); 4689 4690 4691 // Obscure functions. 4692 4693 // SSL_CTX_set_msg_callback installs |cb| as the message callback for |ctx|. 4694 // This callback will be called when sending or receiving low-level record 4695 // headers, complete handshake messages, ChangeCipherSpec, alerts, and DTLS 4696 // ACKs. |write_p| is one for outgoing messages and zero for incoming messages. 4697 // 4698 // For each record header, |cb| is called with |version| = 0 and |content_type| 4699 // = |SSL3_RT_HEADER|. The |len| bytes from |buf| contain the header. Note that 4700 // this does not include the record body. If the record is sealed, the length 4701 // in the header is the length of the ciphertext. 4702 // 4703 // For each handshake message, ChangeCipherSpec, alert, and DTLS ACK, |version| 4704 // is the protocol version and |content_type| is the corresponding record type. 4705 // The |len| bytes from |buf| contain the handshake message, one-byte 4706 // ChangeCipherSpec body, two-byte alert, and ACK respectively. 4707 // 4708 // In connections that enable ECH, |cb| is additionally called with 4709 // |content_type| = |SSL3_RT_CLIENT_HELLO_INNER| for each ClientHelloInner that 4710 // is encrypted or decrypted. The |len| bytes from |buf| contain the 4711 // ClientHelloInner, including the reconstructed outer extensions and handshake 4712 // header. 4713 // 4714 // For a V2ClientHello, |version| is |SSL2_VERSION|, |content_type| is zero, and 4715 // the |len| bytes from |buf| contain the V2ClientHello structure. 4716 OPENSSL_EXPORT void SSL_CTX_set_msg_callback( 4717 SSL_CTX *ctx, void (*cb)(int is_write, int version, int content_type, 4718 const void *buf, size_t len, SSL *ssl, void *arg)); 4719 4720 // SSL_CTX_set_msg_callback_arg sets the |arg| parameter of the message 4721 // callback. 4722 OPENSSL_EXPORT void SSL_CTX_set_msg_callback_arg(SSL_CTX *ctx, void *arg); 4723 4724 // SSL_set_msg_callback installs |cb| as the message callback of |ssl|. See 4725 // |SSL_CTX_set_msg_callback| for when this callback is called. 4726 OPENSSL_EXPORT void SSL_set_msg_callback( 4727 SSL *ssl, void (*cb)(int write_p, int version, int content_type, 4728 const void *buf, size_t len, SSL *ssl, void *arg)); 4729 4730 // SSL_set_msg_callback_arg sets the |arg| parameter of the message callback. 4731 OPENSSL_EXPORT void SSL_set_msg_callback_arg(SSL *ssl, void *arg); 4732 4733 // SSL_CTX_set_keylog_callback configures a callback to log key material. This 4734 // is intended for debugging use with tools like Wireshark. The |cb| function 4735 // should log |line| followed by a newline, synchronizing with any concurrent 4736 // access to the log. 4737 // 4738 // The format is described in 4739 // https://www.ietf.org/archive/id/draft-ietf-tls-keylogfile-01.html 4740 // 4741 // WARNING: The data in |line| allows an attacker to break security properties 4742 // of the TLS protocol, including confidentiality, integrity, and forward 4743 // secrecy. This impacts both the current connection, and, in TLS 1.2, future 4744 // connections that resume a session from it. Both direct access to the data and 4745 // side channel leaks from application code are possible attack vectors. This 4746 // callback is intended for debugging and should not be used in production 4747 // connections. 4748 OPENSSL_EXPORT void SSL_CTX_set_keylog_callback(SSL_CTX *ctx, 4749 void (*cb)(const SSL *ssl, 4750 const char *line)); 4751 4752 // SSL_CTX_get_keylog_callback returns the callback configured by 4753 // |SSL_CTX_set_keylog_callback|. 4754 OPENSSL_EXPORT void (*SSL_CTX_get_keylog_callback(const SSL_CTX *ctx))( 4755 const SSL *ssl, const char *line); 4756 4757 // SSL_CTX_set_current_time_cb configures a callback to retrieve the current 4758 // time, which should be set in |*out_clock|. This can be used for testing 4759 // purposes; for example, a callback can be configured that returns a time 4760 // set explicitly by the test. The |ssl| pointer passed to |cb| is always null. 4761 OPENSSL_EXPORT void SSL_CTX_set_current_time_cb( 4762 SSL_CTX *ctx, void (*cb)(const SSL *ssl, struct timeval *out_clock)); 4763 4764 // SSL_set_shed_handshake_config allows some of the configuration of |ssl| to be 4765 // freed after its handshake completes. Once configuration has been shed, APIs 4766 // that query it may fail. "Configuration" in this context means anything that 4767 // was set by the caller, as distinct from information derived from the 4768 // handshake. For example, |SSL_get_ciphers| queries how the |SSL| was 4769 // configured by the caller, and fails after configuration has been shed, 4770 // whereas |SSL_get_cipher| queries the result of the handshake, and is 4771 // unaffected by configuration shedding. 4772 // 4773 // If configuration shedding is enabled, it is an error to call |SSL_clear|. 4774 // 4775 // Note that configuration shedding as a client additionally depends on 4776 // renegotiation being disabled (see |SSL_set_renegotiate_mode|). If 4777 // renegotiation is possible, the configuration will be retained. If 4778 // configuration shedding is enabled and renegotiation later disabled after the 4779 // handshake, |SSL_set_renegotiate_mode| will shed configuration then. This may 4780 // be useful for clients which support renegotiation with some ALPN protocols, 4781 // such as HTTP/1.1, and not others, such as HTTP/2. 4782 OPENSSL_EXPORT void SSL_set_shed_handshake_config(SSL *ssl, int enable); 4783 4784 enum ssl_renegotiate_mode_t BORINGSSL_ENUM_INT { 4785 ssl_renegotiate_never = 0, 4786 ssl_renegotiate_once, 4787 ssl_renegotiate_freely, 4788 ssl_renegotiate_ignore, 4789 ssl_renegotiate_explicit, 4790 }; 4791 4792 // SSL_set_renegotiate_mode configures how |ssl|, a client, reacts to 4793 // renegotiation attempts by a server. If |ssl| is a server, peer-initiated 4794 // renegotiations are *always* rejected and this function does nothing. 4795 // 4796 // WARNING: Renegotiation is error-prone, complicates TLS's security properties, 4797 // and increases its attack surface. When enabled, many common assumptions about 4798 // BoringSSL's behavior no longer hold, and the calling application must handle 4799 // more cases. Renegotiation is also incompatible with many application 4800 // protocols, e.g. section 9.2.1 of RFC 7540. Many functions behave in ambiguous 4801 // or undefined ways during a renegotiation. 4802 // 4803 // The renegotiation mode defaults to |ssl_renegotiate_never|, but may be set 4804 // at any point in a connection's lifetime. Set it to |ssl_renegotiate_once| to 4805 // allow one renegotiation, |ssl_renegotiate_freely| to allow all 4806 // renegotiations or |ssl_renegotiate_ignore| to ignore HelloRequest messages. 4807 // Note that ignoring HelloRequest messages may cause the connection to stall 4808 // if the server waits for the renegotiation to complete. 4809 // 4810 // If set to |ssl_renegotiate_explicit|, |SSL_read| and |SSL_peek| calls which 4811 // encounter a HelloRequest will pause with |SSL_ERROR_WANT_RENEGOTIATE|. 4812 // |SSL_write| will continue to work while paused. The caller may call 4813 // |SSL_renegotiate| to begin the renegotiation at a later point. This mode may 4814 // be used if callers wish to eagerly call |SSL_peek| without triggering a 4815 // renegotiation. 4816 // 4817 // If configuration shedding is enabled (see |SSL_set_shed_handshake_config|), 4818 // configuration is released if, at any point after the handshake, renegotiation 4819 // is disabled. It is not possible to switch from disabling renegotiation to 4820 // enabling it on a given connection. Callers that condition renegotiation on, 4821 // e.g., ALPN must enable renegotiation before the handshake and conditionally 4822 // disable it afterwards. 4823 // 4824 // When enabled, renegotiation can cause properties of |ssl|, such as the cipher 4825 // suite, to change during the lifetime of the connection. More over, during a 4826 // renegotiation, not all properties of the new handshake are available or fully 4827 // established. In BoringSSL, most functions, such as |SSL_get_current_cipher|, 4828 // report information from the most recently completed handshake, not the 4829 // pending one. However, renegotiation may rerun handshake callbacks, such as 4830 // |SSL_CTX_set_cert_cb|. Such callbacks must ensure they are acting on the 4831 // desired versions of each property. 4832 // 4833 // BoringSSL does not reverify peer certificates on renegotiation and instead 4834 // requires they match between handshakes, so certificate verification callbacks 4835 // (see |SSL_CTX_set_custom_verify|) may assume |ssl| is in the initial 4836 // handshake and use |SSL_get0_peer_certificates|, etc. 4837 // 4838 // There is no support in BoringSSL for initiating renegotiations as a client 4839 // or server. 4840 OPENSSL_EXPORT void SSL_set_renegotiate_mode(SSL *ssl, 4841 enum ssl_renegotiate_mode_t mode); 4842 4843 // SSL_renegotiate starts a deferred renegotiation on |ssl| if it was configured 4844 // with |ssl_renegotiate_explicit| and has a pending HelloRequest. It returns 4845 // one on success and zero on error. 4846 // 4847 // This function does not do perform any I/O. On success, a subsequent 4848 // |SSL_do_handshake| call will run the handshake. |SSL_write| and 4849 // |SSL_read| will also complete the handshake before sending or receiving 4850 // application data. 4851 OPENSSL_EXPORT int SSL_renegotiate(SSL *ssl); 4852 4853 // SSL_renegotiate_pending returns one if |ssl| is in the middle of a 4854 // renegotiation. 4855 OPENSSL_EXPORT int SSL_renegotiate_pending(SSL *ssl); 4856 4857 // SSL_total_renegotiations returns the total number of renegotiation handshakes 4858 // performed by |ssl|. This includes the pending renegotiation, if any. 4859 OPENSSL_EXPORT int SSL_total_renegotiations(const SSL *ssl); 4860 4861 // SSL_MAX_CERT_LIST_DEFAULT is the default maximum length, in bytes, of a peer 4862 // certificate chain. 4863 #define SSL_MAX_CERT_LIST_DEFAULT (1024 * 100) 4864 4865 // SSL_CTX_get_max_cert_list returns the maximum length, in bytes, of a peer 4866 // certificate chain accepted by |ctx|. 4867 OPENSSL_EXPORT size_t SSL_CTX_get_max_cert_list(const SSL_CTX *ctx); 4868 4869 // SSL_CTX_set_max_cert_list sets the maximum length, in bytes, of a peer 4870 // certificate chain to |max_cert_list|. This affects how much memory may be 4871 // consumed during the handshake. 4872 OPENSSL_EXPORT void SSL_CTX_set_max_cert_list(SSL_CTX *ctx, 4873 size_t max_cert_list); 4874 4875 // SSL_get_max_cert_list returns the maximum length, in bytes, of a peer 4876 // certificate chain accepted by |ssl|. 4877 OPENSSL_EXPORT size_t SSL_get_max_cert_list(const SSL *ssl); 4878 4879 // SSL_set_max_cert_list sets the maximum length, in bytes, of a peer 4880 // certificate chain to |max_cert_list|. This affects how much memory may be 4881 // consumed during the handshake. 4882 OPENSSL_EXPORT void SSL_set_max_cert_list(SSL *ssl, size_t max_cert_list); 4883 4884 // SSL_CTX_set_max_send_fragment sets the maximum length, in bytes, of records 4885 // sent by |ctx|. Beyond this length, handshake messages and application data 4886 // will be split into multiple records. It returns one on success or zero on 4887 // error. 4888 OPENSSL_EXPORT int SSL_CTX_set_max_send_fragment(SSL_CTX *ctx, 4889 size_t max_send_fragment); 4890 4891 // SSL_set_max_send_fragment sets the maximum length, in bytes, of records sent 4892 // by |ssl|. Beyond this length, handshake messages and application data will 4893 // be split into multiple records. It returns one on success or zero on 4894 // error. 4895 OPENSSL_EXPORT int SSL_set_max_send_fragment(SSL *ssl, 4896 size_t max_send_fragment); 4897 4898 // ssl_early_callback_ctx (aka |SSL_CLIENT_HELLO|) is passed to certain 4899 // callbacks that are called very early on during the server handshake. At this 4900 // point, much of the SSL* hasn't been filled out and only the ClientHello can 4901 // be depended on. 4902 struct ssl_early_callback_ctx { 4903 SSL *ssl; 4904 const uint8_t *client_hello; 4905 size_t client_hello_len; 4906 uint16_t version; 4907 const uint8_t *random; 4908 size_t random_len; 4909 const uint8_t *session_id; 4910 size_t session_id_len; 4911 const uint8_t *dtls_cookie; 4912 size_t dtls_cookie_len; 4913 const uint8_t *cipher_suites; 4914 size_t cipher_suites_len; 4915 const uint8_t *compression_methods; 4916 size_t compression_methods_len; 4917 const uint8_t *extensions; 4918 size_t extensions_len; 4919 } /* SSL_CLIENT_HELLO */; 4920 4921 // ssl_select_cert_result_t enumerates the possible results from selecting a 4922 // certificate with |select_certificate_cb|. 4923 enum ssl_select_cert_result_t BORINGSSL_ENUM_INT { 4924 // ssl_select_cert_success indicates that the certificate selection was 4925 // successful. 4926 ssl_select_cert_success = 1, 4927 // ssl_select_cert_retry indicates that the operation could not be 4928 // immediately completed and must be reattempted at a later point. 4929 ssl_select_cert_retry = 0, 4930 // ssl_select_cert_error indicates that a fatal error occured and the 4931 // handshake should be terminated. 4932 ssl_select_cert_error = -1, 4933 // ssl_select_cert_disable_ech indicates that, although an encrypted 4934 // ClientHelloInner was decrypted, it should be discarded. The certificate 4935 // selection callback will then be called again, passing in the 4936 // ClientHelloOuter instead. From there, the handshake will proceed 4937 // without retry_configs, to signal to the client to disable ECH. 4938 // 4939 // This value may only be returned when |SSL_ech_accepted| returnes one. It 4940 // may be useful if the ClientHelloInner indicated a service which does not 4941 // support ECH, e.g. if it is a TLS-1.2 only service. 4942 ssl_select_cert_disable_ech = -2, 4943 }; 4944 4945 // SSL_early_callback_ctx_extension_get searches the extensions in 4946 // |client_hello| for an extension of the given type. If not found, it returns 4947 // zero. Otherwise it sets |out_data| to point to the extension contents (not 4948 // including the type and length bytes), sets |out_len| to the length of the 4949 // extension contents and returns one. 4950 OPENSSL_EXPORT int SSL_early_callback_ctx_extension_get( 4951 const SSL_CLIENT_HELLO *client_hello, uint16_t extension_type, 4952 const uint8_t **out_data, size_t *out_len); 4953 4954 // SSL_CTX_set_select_certificate_cb sets a callback that is called before most 4955 // ClientHello processing and before the decision whether to resume a session 4956 // is made. The callback may inspect the ClientHello and configure the 4957 // connection. See |ssl_select_cert_result_t| for details of the return values. 4958 // 4959 // In the case that a retry is indicated, |SSL_get_error| will return 4960 // |SSL_ERROR_PENDING_CERTIFICATE| and the caller should arrange for the 4961 // high-level operation on |ssl| to be retried at a later time, which will 4962 // result in another call to |cb|. 4963 // 4964 // |SSL_get_servername| may be used during this callback. 4965 // 4966 // Note: The |SSL_CLIENT_HELLO| is only valid for the duration of the callback 4967 // and is not valid while the handshake is paused. 4968 OPENSSL_EXPORT void SSL_CTX_set_select_certificate_cb( 4969 SSL_CTX *ctx, 4970 enum ssl_select_cert_result_t (*cb)(const SSL_CLIENT_HELLO *)); 4971 4972 // SSL_CTX_set_dos_protection_cb sets a callback that is called once the 4973 // resumption decision for a ClientHello has been made. It can return one to 4974 // allow the handshake to continue or zero to cause the handshake to abort. 4975 OPENSSL_EXPORT void SSL_CTX_set_dos_protection_cb( 4976 SSL_CTX *ctx, int (*cb)(const SSL_CLIENT_HELLO *)); 4977 4978 // SSL_CTX_set_reverify_on_resume configures whether the certificate 4979 // verification callback will be used to reverify stored certificates 4980 // when resuming a session. This only works with |SSL_CTX_set_custom_verify|. 4981 // For now, this is incompatible with |SSL_VERIFY_NONE| mode, and is only 4982 // respected on clients. 4983 OPENSSL_EXPORT void SSL_CTX_set_reverify_on_resume(SSL_CTX *ctx, int enabled); 4984 4985 // SSL_set_enforce_rsa_key_usage configures whether, when |ssl| is a client 4986 // negotiating TLS 1.2 or below, the keyUsage extension of RSA leaf server 4987 // certificates will be checked for consistency with the TLS usage. In all other 4988 // cases, this check is always enabled. 4989 // 4990 // This parameter may be set late; it will not be read until after the 4991 // certificate verification callback. 4992 OPENSSL_EXPORT void SSL_set_enforce_rsa_key_usage(SSL *ssl, int enabled); 4993 4994 // SSL_was_key_usage_invalid returns one if |ssl|'s handshake succeeded despite 4995 // using TLS parameters which were incompatible with the leaf certificate's 4996 // keyUsage extension. Otherwise, it returns zero. 4997 // 4998 // If |SSL_set_enforce_rsa_key_usage| is enabled or not applicable, this 4999 // function will always return zero because key usages will be consistently 5000 // checked. 5001 OPENSSL_EXPORT int SSL_was_key_usage_invalid(const SSL *ssl); 5002 5003 // SSL_ST_* are possible values for |SSL_state|, the bitmasks that make them up, 5004 // and some historical values for compatibility. Only |SSL_ST_INIT| and 5005 // |SSL_ST_OK| are ever returned. 5006 #define SSL_ST_CONNECT 0x1000 5007 #define SSL_ST_ACCEPT 0x2000 5008 #define SSL_ST_MASK 0x0FFF 5009 #define SSL_ST_INIT (SSL_ST_CONNECT | SSL_ST_ACCEPT) 5010 #define SSL_ST_OK 0x03 5011 #define SSL_ST_RENEGOTIATE (0x04 | SSL_ST_INIT) 5012 #define SSL_ST_BEFORE (0x05 | SSL_ST_INIT) 5013 5014 // TLS_ST_* are aliases for |SSL_ST_*| for OpenSSL 1.1.0 compatibility. 5015 #define TLS_ST_OK SSL_ST_OK 5016 #define TLS_ST_BEFORE SSL_ST_BEFORE 5017 5018 // SSL_CB_* are possible values for the |type| parameter in the info 5019 // callback and the bitmasks that make them up. 5020 #define SSL_CB_LOOP 0x01 5021 #define SSL_CB_EXIT 0x02 5022 #define SSL_CB_READ 0x04 5023 #define SSL_CB_WRITE 0x08 5024 #define SSL_CB_ALERT 0x4000 5025 #define SSL_CB_READ_ALERT (SSL_CB_ALERT | SSL_CB_READ) 5026 #define SSL_CB_WRITE_ALERT (SSL_CB_ALERT | SSL_CB_WRITE) 5027 #define SSL_CB_ACCEPT_LOOP (SSL_ST_ACCEPT | SSL_CB_LOOP) 5028 #define SSL_CB_ACCEPT_EXIT (SSL_ST_ACCEPT | SSL_CB_EXIT) 5029 #define SSL_CB_CONNECT_LOOP (SSL_ST_CONNECT | SSL_CB_LOOP) 5030 #define SSL_CB_CONNECT_EXIT (SSL_ST_CONNECT | SSL_CB_EXIT) 5031 #define SSL_CB_HANDSHAKE_START 0x10 5032 #define SSL_CB_HANDSHAKE_DONE 0x20 5033 5034 // SSL_CTX_set_info_callback configures a callback to be run when various 5035 // events occur during a connection's lifetime. The |type| argument determines 5036 // the type of event and the meaning of the |value| argument. Callbacks must 5037 // ignore unexpected |type| values. 5038 // 5039 // |SSL_CB_READ_ALERT| is signaled for each alert received, warning or fatal. 5040 // The |value| argument is a 16-bit value where the alert level (either 5041 // |SSL3_AL_WARNING| or |SSL3_AL_FATAL|) is in the most-significant eight bits 5042 // and the alert type (one of |SSL_AD_*|) is in the least-significant eight. 5043 // 5044 // |SSL_CB_WRITE_ALERT| is signaled for each alert sent. The |value| argument 5045 // is constructed as with |SSL_CB_READ_ALERT|. 5046 // 5047 // |SSL_CB_HANDSHAKE_START| is signaled when a handshake begins. The |value| 5048 // argument is always one. 5049 // 5050 // |SSL_CB_HANDSHAKE_DONE| is signaled when a handshake completes successfully. 5051 // The |value| argument is always one. If a handshake False Starts, this event 5052 // may be used to determine when the Finished message is received. 5053 // 5054 // The following event types expose implementation details of the handshake 5055 // state machine. Consuming them is deprecated. 5056 // 5057 // |SSL_CB_ACCEPT_LOOP| (respectively, |SSL_CB_CONNECT_LOOP|) is signaled when 5058 // a server (respectively, client) handshake progresses. The |value| argument 5059 // is always one. 5060 // 5061 // |SSL_CB_ACCEPT_EXIT| (respectively, |SSL_CB_CONNECT_EXIT|) is signaled when 5062 // a server (respectively, client) handshake completes, fails, or is paused. 5063 // The |value| argument is one if the handshake succeeded and <= 0 5064 // otherwise. 5065 OPENSSL_EXPORT void SSL_CTX_set_info_callback(SSL_CTX *ctx, 5066 void (*cb)(const SSL *ssl, 5067 int type, int value)); 5068 5069 // SSL_CTX_get_info_callback returns the callback set by 5070 // |SSL_CTX_set_info_callback|. 5071 OPENSSL_EXPORT void (*SSL_CTX_get_info_callback(SSL_CTX *ctx))(const SSL *ssl, 5072 int type, 5073 int value); 5074 5075 // SSL_set_info_callback configures a callback to be run at various events 5076 // during a connection's lifetime. See |SSL_CTX_set_info_callback|. 5077 OPENSSL_EXPORT void SSL_set_info_callback(SSL *ssl, 5078 void (*cb)(const SSL *ssl, int type, 5079 int value)); 5080 5081 // SSL_get_info_callback returns the callback set by |SSL_set_info_callback|. 5082 OPENSSL_EXPORT void (*SSL_get_info_callback(const SSL *ssl))(const SSL *ssl, 5083 int type, 5084 int value); 5085 5086 // SSL_state_string_long returns the current state of the handshake state 5087 // machine as a string. This may be useful for debugging and logging. 5088 OPENSSL_EXPORT const char *SSL_state_string_long(const SSL *ssl); 5089 5090 #define SSL_SENT_SHUTDOWN 1 5091 #define SSL_RECEIVED_SHUTDOWN 2 5092 5093 // SSL_get_shutdown returns a bitmask with a subset of |SSL_SENT_SHUTDOWN| and 5094 // |SSL_RECEIVED_SHUTDOWN| to query whether close_notify was sent or received, 5095 // respectively. 5096 OPENSSL_EXPORT int SSL_get_shutdown(const SSL *ssl); 5097 5098 // SSL_get_peer_signature_algorithm returns the signature algorithm used by the 5099 // peer. If not applicable, it returns zero. 5100 OPENSSL_EXPORT uint16_t SSL_get_peer_signature_algorithm(const SSL *ssl); 5101 5102 // SSL_get_client_random writes up to |max_out| bytes of the most recent 5103 // handshake's client_random to |out| and returns the number of bytes written. 5104 // If |max_out| is zero, it returns the size of the client_random. 5105 OPENSSL_EXPORT size_t SSL_get_client_random(const SSL *ssl, uint8_t *out, 5106 size_t max_out); 5107 5108 // SSL_get_server_random writes up to |max_out| bytes of the most recent 5109 // handshake's server_random to |out| and returns the number of bytes written. 5110 // If |max_out| is zero, it returns the size of the server_random. 5111 OPENSSL_EXPORT size_t SSL_get_server_random(const SSL *ssl, uint8_t *out, 5112 size_t max_out); 5113 5114 // SSL_get_pending_cipher returns the cipher suite for the current handshake or 5115 // NULL if one has not been negotiated yet or there is no pending handshake. 5116 OPENSSL_EXPORT const SSL_CIPHER *SSL_get_pending_cipher(const SSL *ssl); 5117 5118 // SSL_set_retain_only_sha256_of_client_certs, on a server, sets whether only 5119 // the SHA-256 hash of peer's certificate should be saved in memory and in the 5120 // session. This can save memory, ticket size and session cache space. If 5121 // enabled, |SSL_get_peer_certificate| will return NULL after the handshake 5122 // completes. See |SSL_SESSION_has_peer_sha256| and 5123 // |SSL_SESSION_get0_peer_sha256| to query the hash. 5124 OPENSSL_EXPORT void SSL_set_retain_only_sha256_of_client_certs(SSL *ssl, 5125 int enable); 5126 5127 // SSL_CTX_set_retain_only_sha256_of_client_certs, on a server, sets whether 5128 // only the SHA-256 hash of peer's certificate should be saved in memory and in 5129 // the session. This can save memory, ticket size and session cache space. If 5130 // enabled, |SSL_get_peer_certificate| will return NULL after the handshake 5131 // completes. See |SSL_SESSION_has_peer_sha256| and 5132 // |SSL_SESSION_get0_peer_sha256| to query the hash. 5133 OPENSSL_EXPORT void SSL_CTX_set_retain_only_sha256_of_client_certs(SSL_CTX *ctx, 5134 int enable); 5135 5136 // SSL_CTX_set_grease_enabled configures whether sockets on |ctx| should enable 5137 // GREASE. See RFC 8701. 5138 OPENSSL_EXPORT void SSL_CTX_set_grease_enabled(SSL_CTX *ctx, int enabled); 5139 5140 // SSL_CTX_set_permute_extensions configures whether sockets on |ctx| should 5141 // permute extensions. For now, this is only implemented for the ClientHello. 5142 OPENSSL_EXPORT void SSL_CTX_set_permute_extensions(SSL_CTX *ctx, int enabled); 5143 5144 // SSL_set_permute_extensions configures whether sockets on |ssl| should 5145 // permute extensions. For now, this is only implemented for the ClientHello. 5146 OPENSSL_EXPORT void SSL_set_permute_extensions(SSL *ssl, int enabled); 5147 5148 // SSL_max_seal_overhead returns the maximum overhead, in bytes, of sealing a 5149 // record with |ssl|. 5150 OPENSSL_EXPORT size_t SSL_max_seal_overhead(const SSL *ssl); 5151 5152 // SSL_CTX_set_false_start_allowed_without_alpn configures whether connections 5153 // on |ctx| may use False Start (if |SSL_MODE_ENABLE_FALSE_START| is enabled) 5154 // without negotiating ALPN. 5155 OPENSSL_EXPORT void SSL_CTX_set_false_start_allowed_without_alpn(SSL_CTX *ctx, 5156 int allowed); 5157 5158 // SSL_used_hello_retry_request returns one if the TLS 1.3 HelloRetryRequest 5159 // message has been either sent by the server or received by the client. It 5160 // returns zero otherwise. 5161 OPENSSL_EXPORT int SSL_used_hello_retry_request(const SSL *ssl); 5162 5163 // SSL_set_jdk11_workaround configures whether to workaround various bugs in 5164 // JDK 11's TLS 1.3 implementation by disabling TLS 1.3 for such clients. 5165 // 5166 // https://bugs.openjdk.java.net/browse/JDK-8211806 5167 // https://bugs.openjdk.java.net/browse/JDK-8212885 5168 // https://bugs.openjdk.java.net/browse/JDK-8213202 5169 OPENSSL_EXPORT void SSL_set_jdk11_workaround(SSL *ssl, int enable); 5170 5171 // SSL_parse_client_hello decodes a ClientHello structure from |len| bytes in 5172 // |in|. On success, it returns one and writes the result to |*out|. Otherwise, 5173 // it returns zero. |ssl| will be saved into |*out| and determines how the 5174 // ClientHello is parsed, notably TLS vs DTLS. The fields in |*out| will alias 5175 // |in| and are only valid as long as |in| is valid and unchanged. 5176 // 5177 // |in| should contain just the ClientHello structure (RFC 8446 and RFC 9147), 5178 // excluding the handshake header and already reassembled from record layer. 5179 // That is, |in| should begin with the legacy_version field, not the 5180 // client_hello HandshakeType constant or the handshake ContentType constant. 5181 OPENSSL_EXPORT int SSL_parse_client_hello(const SSL *ssl, SSL_CLIENT_HELLO *out, 5182 const uint8_t *in, size_t len); 5183 5184 5185 // Deprecated functions. 5186 5187 // SSL_library_init returns one. 5188 OPENSSL_EXPORT int SSL_library_init(void); 5189 5190 // SSL_CIPHER_description writes a description of |cipher| into |buf| and 5191 // returns |buf|. If |buf| is NULL, it returns a newly allocated string, to be 5192 // freed with |OPENSSL_free|, or NULL on error. 5193 // 5194 // The description includes a trailing newline and has the form: 5195 // AES128-SHA Kx=RSA Au=RSA Enc=AES(128) Mac=SHA1 5196 // 5197 // Consider |SSL_CIPHER_standard_name| or |SSL_CIPHER_get_name| instead. 5198 OPENSSL_EXPORT const char *SSL_CIPHER_description(const SSL_CIPHER *cipher, 5199 char *buf, int len); 5200 5201 // SSL_CIPHER_get_version returns the string "TLSv1/SSLv3". 5202 OPENSSL_EXPORT const char *SSL_CIPHER_get_version(const SSL_CIPHER *cipher); 5203 5204 typedef void COMP_METHOD; 5205 typedef struct ssl_comp_st SSL_COMP; 5206 5207 // SSL_COMP_get_compression_methods returns NULL. 5208 OPENSSL_EXPORT STACK_OF(SSL_COMP) *SSL_COMP_get_compression_methods(void); 5209 5210 // SSL_COMP_add_compression_method returns one. 5211 OPENSSL_EXPORT int SSL_COMP_add_compression_method(int id, COMP_METHOD *cm); 5212 5213 // SSL_COMP_get_name returns NULL. 5214 OPENSSL_EXPORT const char *SSL_COMP_get_name(const COMP_METHOD *comp); 5215 5216 // SSL_COMP_get0_name returns the |name| member of |comp|. 5217 OPENSSL_EXPORT const char *SSL_COMP_get0_name(const SSL_COMP *comp); 5218 5219 // SSL_COMP_get_id returns the |id| member of |comp|. 5220 OPENSSL_EXPORT int SSL_COMP_get_id(const SSL_COMP *comp); 5221 5222 // SSL_COMP_free_compression_methods does nothing. 5223 OPENSSL_EXPORT void SSL_COMP_free_compression_methods(void); 5224 5225 // SSLv23_method calls |TLS_method|. 5226 OPENSSL_EXPORT const SSL_METHOD *SSLv23_method(void); 5227 5228 // These version-specific methods behave exactly like |TLS_method| and 5229 // |DTLS_method| except they also call |SSL_CTX_set_min_proto_version| and 5230 // |SSL_CTX_set_max_proto_version| to lock connections to that protocol 5231 // version. 5232 OPENSSL_EXPORT const SSL_METHOD *TLSv1_method(void); 5233 OPENSSL_EXPORT const SSL_METHOD *TLSv1_1_method(void); 5234 OPENSSL_EXPORT const SSL_METHOD *TLSv1_2_method(void); 5235 OPENSSL_EXPORT const SSL_METHOD *DTLSv1_method(void); 5236 OPENSSL_EXPORT const SSL_METHOD *DTLSv1_2_method(void); 5237 5238 // These client- and server-specific methods call their corresponding generic 5239 // methods. 5240 OPENSSL_EXPORT const SSL_METHOD *TLS_server_method(void); 5241 OPENSSL_EXPORT const SSL_METHOD *TLS_client_method(void); 5242 OPENSSL_EXPORT const SSL_METHOD *SSLv23_server_method(void); 5243 OPENSSL_EXPORT const SSL_METHOD *SSLv23_client_method(void); 5244 OPENSSL_EXPORT const SSL_METHOD *TLSv1_server_method(void); 5245 OPENSSL_EXPORT const SSL_METHOD *TLSv1_client_method(void); 5246 OPENSSL_EXPORT const SSL_METHOD *TLSv1_1_server_method(void); 5247 OPENSSL_EXPORT const SSL_METHOD *TLSv1_1_client_method(void); 5248 OPENSSL_EXPORT const SSL_METHOD *TLSv1_2_server_method(void); 5249 OPENSSL_EXPORT const SSL_METHOD *TLSv1_2_client_method(void); 5250 OPENSSL_EXPORT const SSL_METHOD *DTLS_server_method(void); 5251 OPENSSL_EXPORT const SSL_METHOD *DTLS_client_method(void); 5252 OPENSSL_EXPORT const SSL_METHOD *DTLSv1_server_method(void); 5253 OPENSSL_EXPORT const SSL_METHOD *DTLSv1_client_method(void); 5254 OPENSSL_EXPORT const SSL_METHOD *DTLSv1_2_server_method(void); 5255 OPENSSL_EXPORT const SSL_METHOD *DTLSv1_2_client_method(void); 5256 5257 // SSL_clear resets |ssl| to allow another connection and returns one on success 5258 // or zero on failure. It returns most configuration state but releases memory 5259 // associated with the current connection. 5260 // 5261 // Free |ssl| and create a new one instead. 5262 OPENSSL_EXPORT int SSL_clear(SSL *ssl); 5263 5264 // SSL_CTX_set_tmp_rsa_callback does nothing. 5265 OPENSSL_EXPORT void SSL_CTX_set_tmp_rsa_callback( 5266 SSL_CTX *ctx, RSA *(*cb)(SSL *ssl, int is_export, int keylength)); 5267 5268 // SSL_set_tmp_rsa_callback does nothing. 5269 OPENSSL_EXPORT void SSL_set_tmp_rsa_callback(SSL *ssl, 5270 RSA *(*cb)(SSL *ssl, int is_export, 5271 int keylength)); 5272 5273 // SSL_CTX_sess_connect returns zero. 5274 OPENSSL_EXPORT int SSL_CTX_sess_connect(const SSL_CTX *ctx); 5275 5276 // SSL_CTX_sess_connect_good returns zero. 5277 OPENSSL_EXPORT int SSL_CTX_sess_connect_good(const SSL_CTX *ctx); 5278 5279 // SSL_CTX_sess_connect_renegotiate returns zero. 5280 OPENSSL_EXPORT int SSL_CTX_sess_connect_renegotiate(const SSL_CTX *ctx); 5281 5282 // SSL_CTX_sess_accept returns zero. 5283 OPENSSL_EXPORT int SSL_CTX_sess_accept(const SSL_CTX *ctx); 5284 5285 // SSL_CTX_sess_accept_renegotiate returns zero. 5286 OPENSSL_EXPORT int SSL_CTX_sess_accept_renegotiate(const SSL_CTX *ctx); 5287 5288 // SSL_CTX_sess_accept_good returns zero. 5289 OPENSSL_EXPORT int SSL_CTX_sess_accept_good(const SSL_CTX *ctx); 5290 5291 // SSL_CTX_sess_hits returns zero. 5292 OPENSSL_EXPORT int SSL_CTX_sess_hits(const SSL_CTX *ctx); 5293 5294 // SSL_CTX_sess_cb_hits returns zero. 5295 OPENSSL_EXPORT int SSL_CTX_sess_cb_hits(const SSL_CTX *ctx); 5296 5297 // SSL_CTX_sess_misses returns zero. 5298 OPENSSL_EXPORT int SSL_CTX_sess_misses(const SSL_CTX *ctx); 5299 5300 // SSL_CTX_sess_timeouts returns zero. 5301 OPENSSL_EXPORT int SSL_CTX_sess_timeouts(const SSL_CTX *ctx); 5302 5303 // SSL_CTX_sess_cache_full returns zero. 5304 OPENSSL_EXPORT int SSL_CTX_sess_cache_full(const SSL_CTX *ctx); 5305 5306 // SSL_cutthrough_complete calls |SSL_in_false_start|. 5307 OPENSSL_EXPORT int SSL_cutthrough_complete(const SSL *ssl); 5308 5309 // SSL_num_renegotiations calls |SSL_total_renegotiations|. 5310 OPENSSL_EXPORT int SSL_num_renegotiations(const SSL *ssl); 5311 5312 // SSL_CTX_need_tmp_RSA returns zero. 5313 OPENSSL_EXPORT int SSL_CTX_need_tmp_RSA(const SSL_CTX *ctx); 5314 5315 // SSL_need_tmp_RSA returns zero. 5316 OPENSSL_EXPORT int SSL_need_tmp_RSA(const SSL *ssl); 5317 5318 // SSL_CTX_set_tmp_rsa returns one. 5319 OPENSSL_EXPORT int SSL_CTX_set_tmp_rsa(SSL_CTX *ctx, const RSA *rsa); 5320 5321 // SSL_set_tmp_rsa returns one. 5322 OPENSSL_EXPORT int SSL_set_tmp_rsa(SSL *ssl, const RSA *rsa); 5323 5324 // SSL_CTX_get_read_ahead returns zero. 5325 OPENSSL_EXPORT int SSL_CTX_get_read_ahead(const SSL_CTX *ctx); 5326 5327 // SSL_CTX_set_read_ahead returns one. 5328 OPENSSL_EXPORT int SSL_CTX_set_read_ahead(SSL_CTX *ctx, int yes); 5329 5330 // SSL_get_read_ahead returns zero. 5331 OPENSSL_EXPORT int SSL_get_read_ahead(const SSL *ssl); 5332 5333 // SSL_set_read_ahead returns one. 5334 OPENSSL_EXPORT int SSL_set_read_ahead(SSL *ssl, int yes); 5335 5336 // SSL_set_state does nothing. 5337 OPENSSL_EXPORT void SSL_set_state(SSL *ssl, int state); 5338 5339 // SSL_get_shared_ciphers writes an empty string to |buf| and returns a 5340 // pointer to |buf|, or NULL if |len| is less than or equal to zero. 5341 OPENSSL_EXPORT char *SSL_get_shared_ciphers(const SSL *ssl, char *buf, int len); 5342 5343 // SSL_get_shared_sigalgs returns zero. 5344 OPENSSL_EXPORT int SSL_get_shared_sigalgs(SSL *ssl, int idx, int *psign, 5345 int *phash, int *psignandhash, 5346 uint8_t *rsig, uint8_t *rhash); 5347 5348 // SSL_MODE_HANDSHAKE_CUTTHROUGH is the same as SSL_MODE_ENABLE_FALSE_START. 5349 #define SSL_MODE_HANDSHAKE_CUTTHROUGH SSL_MODE_ENABLE_FALSE_START 5350 5351 // i2d_SSL_SESSION serializes |in|, as described in |i2d_SAMPLE|. 5352 // 5353 // Use |SSL_SESSION_to_bytes| instead. 5354 OPENSSL_EXPORT int i2d_SSL_SESSION(SSL_SESSION *in, uint8_t **pp); 5355 5356 // d2i_SSL_SESSION parses a serialized session from the |length| bytes pointed 5357 // to by |*pp|, as described in |d2i_SAMPLE|. 5358 // 5359 // Use |SSL_SESSION_from_bytes| instead. 5360 OPENSSL_EXPORT SSL_SESSION *d2i_SSL_SESSION(SSL_SESSION **a, const uint8_t **pp, 5361 long length); 5362 5363 // i2d_SSL_SESSION_bio serializes |session| and writes the result to |bio|. It 5364 // returns the number of bytes written on success and <= 0 on error. 5365 OPENSSL_EXPORT int i2d_SSL_SESSION_bio(BIO *bio, const SSL_SESSION *session); 5366 5367 // d2i_SSL_SESSION_bio reads a serialized |SSL_SESSION| from |bio| and returns a 5368 // newly-allocated |SSL_SESSION| or NULL on error. If |out| is not NULL, it also 5369 // frees |*out| and sets |*out| to the new |SSL_SESSION|. 5370 OPENSSL_EXPORT SSL_SESSION *d2i_SSL_SESSION_bio(BIO *bio, SSL_SESSION **out); 5371 5372 // ERR_load_SSL_strings does nothing. 5373 OPENSSL_EXPORT void ERR_load_SSL_strings(void); 5374 5375 // SSL_load_error_strings does nothing. 5376 OPENSSL_EXPORT void SSL_load_error_strings(void); 5377 5378 // SSL_CTX_set_tlsext_use_srtp calls |SSL_CTX_set_srtp_profiles|. It returns 5379 // zero on success and one on failure. 5380 // 5381 // WARNING: this function is dangerous because it breaks the usual return value 5382 // convention. Use |SSL_CTX_set_srtp_profiles| instead. 5383 OPENSSL_EXPORT int SSL_CTX_set_tlsext_use_srtp(SSL_CTX *ctx, 5384 const char *profiles); 5385 5386 // SSL_set_tlsext_use_srtp calls |SSL_set_srtp_profiles|. It returns zero on 5387 // success and one on failure. 5388 // 5389 // WARNING: this function is dangerous because it breaks the usual return value 5390 // convention. Use |SSL_set_srtp_profiles| instead. 5391 OPENSSL_EXPORT int SSL_set_tlsext_use_srtp(SSL *ssl, const char *profiles); 5392 5393 // SSL_get_current_compression returns NULL. 5394 OPENSSL_EXPORT const COMP_METHOD *SSL_get_current_compression(SSL *ssl); 5395 5396 // SSL_get_current_expansion returns NULL. 5397 OPENSSL_EXPORT const COMP_METHOD *SSL_get_current_expansion(SSL *ssl); 5398 5399 // SSL_get_server_tmp_key returns zero. 5400 OPENSSL_EXPORT int SSL_get_server_tmp_key(SSL *ssl, EVP_PKEY **out_key); 5401 5402 // SSL_CTX_set_tmp_dh returns 1. 5403 OPENSSL_EXPORT int SSL_CTX_set_tmp_dh(SSL_CTX *ctx, const DH *dh); 5404 5405 // SSL_set_tmp_dh returns 1. 5406 OPENSSL_EXPORT int SSL_set_tmp_dh(SSL *ssl, const DH *dh); 5407 5408 // SSL_CTX_set_tmp_dh_callback does nothing. 5409 OPENSSL_EXPORT void SSL_CTX_set_tmp_dh_callback( 5410 SSL_CTX *ctx, DH *(*cb)(SSL *ssl, int is_export, int keylength)); 5411 5412 // SSL_set_tmp_dh_callback does nothing. 5413 OPENSSL_EXPORT void SSL_set_tmp_dh_callback(SSL *ssl, 5414 DH *(*cb)(SSL *ssl, int is_export, 5415 int keylength)); 5416 5417 // SSL_CTX_set1_sigalgs takes |num_values| ints and interprets them as pairs 5418 // where the first is the nid of a hash function and the second is an 5419 // |EVP_PKEY_*| value. It configures the signature algorithm preferences for 5420 // |ctx| based on them and returns one on success or zero on error. 5421 // 5422 // This API is compatible with OpenSSL. However, BoringSSL-specific code should 5423 // prefer |SSL_CTX_set_signing_algorithm_prefs| because it's clearer and it's 5424 // more convenient to codesearch for specific algorithm values. 5425 OPENSSL_EXPORT int SSL_CTX_set1_sigalgs(SSL_CTX *ctx, const int *values, 5426 size_t num_values); 5427 5428 // SSL_set1_sigalgs takes |num_values| ints and interprets them as pairs where 5429 // the first is the nid of a hash function and the second is an |EVP_PKEY_*| 5430 // value. It configures the signature algorithm preferences for |ssl| based on 5431 // them and returns one on success or zero on error. 5432 // 5433 // This API is compatible with OpenSSL. However, BoringSSL-specific code should 5434 // prefer |SSL_CTX_set_signing_algorithm_prefs| because it's clearer and it's 5435 // more convenient to codesearch for specific algorithm values. 5436 OPENSSL_EXPORT int SSL_set1_sigalgs(SSL *ssl, const int *values, 5437 size_t num_values); 5438 5439 // SSL_CTX_set1_sigalgs_list takes a textual specification of a set of signature 5440 // algorithms and configures them on |ctx|. It returns one on success and zero 5441 // on error. See 5442 // https://www.openssl.org/docs/man1.1.0/man3/SSL_CTX_set1_sigalgs_list.html for 5443 // a description of the text format. Also note that TLS 1.3 names (e.g. 5444 // "rsa_pkcs1_md5_sha1") can also be used (as in OpenSSL, although OpenSSL 5445 // doesn't document that). 5446 // 5447 // This API is compatible with OpenSSL. However, BoringSSL-specific code should 5448 // prefer |SSL_CTX_set_signing_algorithm_prefs| because it's clearer and it's 5449 // more convenient to codesearch for specific algorithm values. 5450 OPENSSL_EXPORT int SSL_CTX_set1_sigalgs_list(SSL_CTX *ctx, const char *str); 5451 5452 // SSL_set1_sigalgs_list takes a textual specification of a set of signature 5453 // algorithms and configures them on |ssl|. It returns one on success and zero 5454 // on error. See 5455 // https://www.openssl.org/docs/man1.1.0/man3/SSL_CTX_set1_sigalgs_list.html for 5456 // a description of the text format. Also note that TLS 1.3 names (e.g. 5457 // "rsa_pkcs1_md5_sha1") can also be used (as in OpenSSL, although OpenSSL 5458 // doesn't document that). 5459 // 5460 // This API is compatible with OpenSSL. However, BoringSSL-specific code should 5461 // prefer |SSL_CTX_set_signing_algorithm_prefs| because it's clearer and it's 5462 // more convenient to codesearch for specific algorithm values. 5463 OPENSSL_EXPORT int SSL_set1_sigalgs_list(SSL *ssl, const char *str); 5464 5465 #define SSL_set_app_data(s, arg) (SSL_set_ex_data(s, 0, (char *)(arg))) 5466 #define SSL_get_app_data(s) (SSL_get_ex_data(s, 0)) 5467 #define SSL_SESSION_set_app_data(s, a) \ 5468 (SSL_SESSION_set_ex_data(s, 0, (char *)(a))) 5469 #define SSL_SESSION_get_app_data(s) (SSL_SESSION_get_ex_data(s, 0)) 5470 #define SSL_CTX_get_app_data(ctx) (SSL_CTX_get_ex_data(ctx, 0)) 5471 #define SSL_CTX_set_app_data(ctx, arg) \ 5472 (SSL_CTX_set_ex_data(ctx, 0, (char *)(arg))) 5473 5474 #define OpenSSL_add_ssl_algorithms() SSL_library_init() 5475 #define SSLeay_add_ssl_algorithms() SSL_library_init() 5476 5477 #define SSL_get_cipher(ssl) SSL_CIPHER_get_name(SSL_get_current_cipher(ssl)) 5478 #define SSL_get_cipher_bits(ssl, out_alg_bits) \ 5479 SSL_CIPHER_get_bits(SSL_get_current_cipher(ssl), out_alg_bits) 5480 #define SSL_get_cipher_version(ssl) \ 5481 SSL_CIPHER_get_version(SSL_get_current_cipher(ssl)) 5482 #define SSL_get_cipher_name(ssl) \ 5483 SSL_CIPHER_get_name(SSL_get_current_cipher(ssl)) 5484 #define SSL_get_time(session) SSL_SESSION_get_time(session) 5485 #define SSL_set_time(session, time) SSL_SESSION_set_time((session), (time)) 5486 #define SSL_get_timeout(session) SSL_SESSION_get_timeout(session) 5487 #define SSL_set_timeout(session, timeout) \ 5488 SSL_SESSION_set_timeout((session), (timeout)) 5489 5490 struct ssl_comp_st { 5491 int id; 5492 const char *name; 5493 char *method; 5494 }; 5495 5496 DEFINE_STACK_OF(SSL_COMP) 5497 5498 // The following flags do nothing and are included only to make it easier to 5499 // compile code with BoringSSL. 5500 #define SSL_MODE_AUTO_RETRY 0 5501 #define SSL_MODE_RELEASE_BUFFERS 0 5502 #define SSL_MODE_SEND_CLIENTHELLO_TIME 0 5503 #define SSL_MODE_SEND_SERVERHELLO_TIME 0 5504 #define SSL_OP_ALL 0 5505 #define SSL_OP_ALLOW_UNSAFE_LEGACY_RENEGOTIATION 0 5506 #define SSL_OP_DONT_INSERT_EMPTY_FRAGMENTS 0 5507 #define SSL_OP_EPHEMERAL_RSA 0 5508 #define SSL_OP_LEGACY_SERVER_CONNECT 0 5509 #define SSL_OP_MICROSOFT_BIG_SSLV3_BUFFER 0 5510 #define SSL_OP_MICROSOFT_SESS_ID_BUG 0 5511 #define SSL_OP_MSIE_SSLV2_RSA_PADDING 0 5512 #define SSL_OP_NETSCAPE_CA_DN_BUG 0 5513 #define SSL_OP_NETSCAPE_CHALLENGE_BUG 0 5514 #define SSL_OP_NETSCAPE_DEMO_CIPHER_CHANGE_BUG 0 5515 #define SSL_OP_NETSCAPE_REUSE_CIPHER_CHANGE_BUG 0 5516 #define SSL_OP_NO_COMPRESSION 0 5517 #define SSL_OP_NO_RENEGOTIATION 0 // ssl_renegotiate_never is the default 5518 #define SSL_OP_NO_SESSION_RESUMPTION_ON_RENEGOTIATION 0 5519 #define SSL_OP_NO_SSLv2 0 5520 #define SSL_OP_NO_SSLv3 0 5521 #define SSL_OP_PKCS1_CHECK_1 0 5522 #define SSL_OP_PKCS1_CHECK_2 0 5523 #define SSL_OP_SINGLE_DH_USE 0 5524 #define SSL_OP_SINGLE_ECDH_USE 0 5525 #define SSL_OP_SSLEAY_080_CLIENT_DH_BUG 0 5526 #define SSL_OP_SSLREF2_REUSE_CERT_TYPE_BUG 0 5527 #define SSL_OP_TLS_BLOCK_PADDING_BUG 0 5528 #define SSL_OP_TLS_D5_BUG 0 5529 #define SSL_OP_TLS_ROLLBACK_BUG 0 5530 #define SSL_VERIFY_CLIENT_ONCE 0 5531 5532 // SSL_cache_hit calls |SSL_session_reused|. 5533 OPENSSL_EXPORT int SSL_cache_hit(SSL *ssl); 5534 5535 // SSL_get_default_timeout returns |SSL_DEFAULT_SESSION_TIMEOUT|. 5536 OPENSSL_EXPORT long SSL_get_default_timeout(const SSL *ssl); 5537 5538 // SSL_get_version returns a string describing the TLS version used by |ssl|. 5539 // For example, "TLSv1.2" or "DTLSv1". 5540 OPENSSL_EXPORT const char *SSL_get_version(const SSL *ssl); 5541 5542 // SSL_get_all_version_names outputs a list of possible strings 5543 // |SSL_get_version| may return in this version of BoringSSL. It writes at most 5544 // |max_out| entries to |out| and returns the total number it would have 5545 // written, if |max_out| had been large enough. |max_out| may be initially set 5546 // to zero to size the output. 5547 // 5548 // This function is only intended to help initialize tables in callers that want 5549 // possible strings pre-declared. This list would not be suitable to set a list 5550 // of supported features. It is in no particular order, and may contain 5551 // placeholder, experimental, or deprecated values that do not apply to every 5552 // caller. Future versions of BoringSSL may also return strings not in this 5553 // list, so this does not apply if, say, sending strings across services. 5554 OPENSSL_EXPORT size_t SSL_get_all_version_names(const char **out, 5555 size_t max_out); 5556 5557 // SSL_get_cipher_list returns the name of the |n|th cipher in the output of 5558 // |SSL_get_ciphers| or NULL if out of range. Use |SSL_get_ciphers| instead. 5559 OPENSSL_EXPORT const char *SSL_get_cipher_list(const SSL *ssl, int n); 5560 5561 // SSL_CTX_set_client_cert_cb sets a callback which is called on the client if 5562 // the server requests a client certificate and none is configured. On success, 5563 // the callback should return one and set |*out_x509| to |*out_pkey| to a leaf 5564 // certificate and private key, respectively, passing ownership. It should 5565 // return zero to send no certificate and -1 to fail or pause the handshake. If 5566 // the handshake is paused, |SSL_get_error| will return 5567 // |SSL_ERROR_WANT_X509_LOOKUP|. 5568 // 5569 // The callback may call |SSL_get0_certificate_types| and 5570 // |SSL_get_client_CA_list| for information on the server's certificate request. 5571 // 5572 // Use |SSL_CTX_set_cert_cb| instead. Configuring intermediate certificates with 5573 // this function is confusing. This callback may not be registered concurrently 5574 // with |SSL_CTX_set_cert_cb| or |SSL_set_cert_cb|. 5575 OPENSSL_EXPORT void SSL_CTX_set_client_cert_cb( 5576 SSL_CTX *ctx, int (*cb)(SSL *ssl, X509 **out_x509, EVP_PKEY **out_pkey)); 5577 5578 #define SSL_NOTHING SSL_ERROR_NONE 5579 #define SSL_WRITING SSL_ERROR_WANT_WRITE 5580 #define SSL_READING SSL_ERROR_WANT_READ 5581 5582 // SSL_want returns one of the above values to determine what the most recent 5583 // operation on |ssl| was blocked on. Use |SSL_get_error| instead. 5584 OPENSSL_EXPORT int SSL_want(const SSL *ssl); 5585 5586 #define SSL_want_read(ssl) (SSL_want(ssl) == SSL_READING) 5587 #define SSL_want_write(ssl) (SSL_want(ssl) == SSL_WRITING) 5588 5589 // SSL_get_finished writes up to |count| bytes of the Finished message sent by 5590 // |ssl| to |buf|. It returns the total untruncated length or zero if none has 5591 // been sent yet. At TLS 1.3 and later, it returns zero. 5592 // 5593 // Use |SSL_get_tls_unique| instead. 5594 OPENSSL_EXPORT size_t SSL_get_finished(const SSL *ssl, void *buf, size_t count); 5595 5596 // SSL_get_peer_finished writes up to |count| bytes of the Finished message 5597 // received from |ssl|'s peer to |buf|. It returns the total untruncated length 5598 // or zero if none has been received yet. At TLS 1.3 and later, it returns 5599 // zero. 5600 // 5601 // Use |SSL_get_tls_unique| instead. 5602 OPENSSL_EXPORT size_t SSL_get_peer_finished(const SSL *ssl, void *buf, 5603 size_t count); 5604 5605 // SSL_alert_type_string returns "!". Use |SSL_alert_type_string_long| 5606 // instead. 5607 OPENSSL_EXPORT const char *SSL_alert_type_string(int value); 5608 5609 // SSL_alert_desc_string returns "!!". Use |SSL_alert_desc_string_long| 5610 // instead. 5611 OPENSSL_EXPORT const char *SSL_alert_desc_string(int value); 5612 5613 // SSL_state_string returns "!!!!!!". Use |SSL_state_string_long| for a more 5614 // intelligible string. 5615 OPENSSL_EXPORT const char *SSL_state_string(const SSL *ssl); 5616 5617 // SSL_TXT_* expand to strings. 5618 #define SSL_TXT_MEDIUM "MEDIUM" 5619 #define SSL_TXT_HIGH "HIGH" 5620 #define SSL_TXT_FIPS "FIPS" 5621 #define SSL_TXT_kRSA "kRSA" 5622 #define SSL_TXT_kDHE "kDHE" 5623 #define SSL_TXT_kEDH "kEDH" 5624 #define SSL_TXT_kECDHE "kECDHE" 5625 #define SSL_TXT_kEECDH "kEECDH" 5626 #define SSL_TXT_kPSK "kPSK" 5627 #define SSL_TXT_aRSA "aRSA" 5628 #define SSL_TXT_aECDSA "aECDSA" 5629 #define SSL_TXT_aPSK "aPSK" 5630 #define SSL_TXT_DH "DH" 5631 #define SSL_TXT_DHE "DHE" 5632 #define SSL_TXT_EDH "EDH" 5633 #define SSL_TXT_RSA "RSA" 5634 #define SSL_TXT_ECDH "ECDH" 5635 #define SSL_TXT_ECDHE "ECDHE" 5636 #define SSL_TXT_EECDH "EECDH" 5637 #define SSL_TXT_ECDSA "ECDSA" 5638 #define SSL_TXT_PSK "PSK" 5639 #define SSL_TXT_3DES "3DES" 5640 #define SSL_TXT_RC4 "RC4" 5641 #define SSL_TXT_AES128 "AES128" 5642 #define SSL_TXT_AES256 "AES256" 5643 #define SSL_TXT_AES "AES" 5644 #define SSL_TXT_AES_GCM "AESGCM" 5645 #define SSL_TXT_CHACHA20 "CHACHA20" 5646 #define SSL_TXT_MD5 "MD5" 5647 #define SSL_TXT_SHA1 "SHA1" 5648 #define SSL_TXT_SHA "SHA" 5649 #define SSL_TXT_SHA256 "SHA256" 5650 #define SSL_TXT_SHA384 "SHA384" 5651 #define SSL_TXT_SSLV3 "SSLv3" 5652 #define SSL_TXT_TLSV1 "TLSv1" 5653 #define SSL_TXT_TLSV1_1 "TLSv1.1" 5654 #define SSL_TXT_TLSV1_2 "TLSv1.2" 5655 #define SSL_TXT_TLSV1_3 "TLSv1.3" 5656 #define SSL_TXT_ALL "ALL" 5657 #define SSL_TXT_CMPDEF "COMPLEMENTOFDEFAULT" 5658 5659 typedef struct ssl_conf_ctx_st SSL_CONF_CTX; 5660 5661 // SSL_state returns |SSL_ST_INIT| if a handshake is in progress and |SSL_ST_OK| 5662 // otherwise. 5663 // 5664 // Use |SSL_is_init| instead. 5665 OPENSSL_EXPORT int SSL_state(const SSL *ssl); 5666 5667 #define SSL_get_state(ssl) SSL_state(ssl) 5668 5669 // SSL_set_shutdown causes |ssl| to behave as if the shutdown bitmask (see 5670 // |SSL_get_shutdown|) were |mode|. This may be used to skip sending or 5671 // receiving close_notify in |SSL_shutdown| by causing the implementation to 5672 // believe the events already happened. 5673 // 5674 // It is an error to use |SSL_set_shutdown| to unset a bit that has already been 5675 // set. Doing so will trigger an |assert| in debug builds and otherwise be 5676 // ignored. 5677 // 5678 // Use |SSL_CTX_set_quiet_shutdown| instead. 5679 OPENSSL_EXPORT void SSL_set_shutdown(SSL *ssl, int mode); 5680 5681 // SSL_CTX_set_tmp_ecdh calls |SSL_CTX_set1_groups| with a one-element list 5682 // containing |ec_key|'s curve. The remainder of |ec_key| is ignored. 5683 OPENSSL_EXPORT int SSL_CTX_set_tmp_ecdh(SSL_CTX *ctx, const EC_KEY *ec_key); 5684 5685 // SSL_set_tmp_ecdh calls |SSL_set1_groups| with a one-element list containing 5686 // |ec_key|'s curve. The remainder of |ec_key| is ignored. 5687 OPENSSL_EXPORT int SSL_set_tmp_ecdh(SSL *ssl, const EC_KEY *ec_key); 5688 5689 #if !defined(OPENSSL_NO_FILESYSTEM) 5690 // SSL_add_dir_cert_subjects_to_stack lists files in directory |dir|. It calls 5691 // |SSL_add_file_cert_subjects_to_stack| on each file and returns one on success 5692 // or zero on error. This function is only available from the libdecrepit 5693 // library. 5694 OPENSSL_EXPORT int SSL_add_dir_cert_subjects_to_stack(STACK_OF(X509_NAME) *out, 5695 const char *dir); 5696 #endif 5697 5698 // SSL_CTX_enable_tls_channel_id calls |SSL_CTX_set_tls_channel_id_enabled|. 5699 OPENSSL_EXPORT int SSL_CTX_enable_tls_channel_id(SSL_CTX *ctx); 5700 5701 // SSL_enable_tls_channel_id calls |SSL_set_tls_channel_id_enabled|. 5702 OPENSSL_EXPORT int SSL_enable_tls_channel_id(SSL *ssl); 5703 5704 // BIO_f_ssl returns a |BIO_METHOD| that can wrap an |SSL*| in a |BIO*|. Note 5705 // that this has quite different behaviour from the version in OpenSSL (notably 5706 // that it doesn't try to auto renegotiate). 5707 // 5708 // IMPORTANT: if you are not curl, don't use this. 5709 OPENSSL_EXPORT const BIO_METHOD *BIO_f_ssl(void); 5710 5711 // BIO_set_ssl sets |ssl| as the underlying connection for |bio|, which must 5712 // have been created using |BIO_f_ssl|. If |take_owership| is true, |bio| will 5713 // call |SSL_free| on |ssl| when closed. It returns one on success or something 5714 // other than one on error. 5715 OPENSSL_EXPORT long BIO_set_ssl(BIO *bio, SSL *ssl, int take_owership); 5716 5717 // SSL_CTX_set_ecdh_auto returns one. 5718 #define SSL_CTX_set_ecdh_auto(ctx, onoff) 1 5719 5720 // SSL_set_ecdh_auto returns one. 5721 #define SSL_set_ecdh_auto(ssl, onoff) 1 5722 5723 // SSL_get_session returns a non-owning pointer to |ssl|'s session. For 5724 // historical reasons, which session it returns depends on |ssl|'s state. 5725 // 5726 // Prior to the start of the initial handshake, it returns the session the 5727 // caller set with |SSL_set_session|. After the initial handshake has finished 5728 // and if no additional handshakes are in progress, it returns the currently 5729 // active session. Its behavior is undefined while a handshake is in progress. 5730 // 5731 // If trying to add new sessions to an external session cache, use 5732 // |SSL_CTX_sess_set_new_cb| instead. In particular, using the callback is 5733 // required as of TLS 1.3. For compatibility, this function will return an 5734 // unresumable session which may be cached, but will never be resumed. 5735 // 5736 // If querying properties of the connection, use APIs on the |SSL| object. 5737 OPENSSL_EXPORT SSL_SESSION *SSL_get_session(const SSL *ssl); 5738 5739 // SSL_get0_session is an alias for |SSL_get_session|. 5740 #define SSL_get0_session SSL_get_session 5741 5742 // SSL_get1_session acts like |SSL_get_session| but returns a new reference to 5743 // the session. 5744 OPENSSL_EXPORT SSL_SESSION *SSL_get1_session(SSL *ssl); 5745 5746 #define OPENSSL_INIT_NO_LOAD_SSL_STRINGS 0 5747 #define OPENSSL_INIT_LOAD_SSL_STRINGS 0 5748 #define OPENSSL_INIT_SSL_DEFAULT 0 5749 5750 // OPENSSL_init_ssl returns one. 5751 OPENSSL_EXPORT int OPENSSL_init_ssl(uint64_t opts, 5752 const OPENSSL_INIT_SETTINGS *settings); 5753 5754 // The following constants are legacy aliases for RSA-PSS with rsaEncryption 5755 // keys. Use the new names instead. 5756 #define SSL_SIGN_RSA_PSS_SHA256 SSL_SIGN_RSA_PSS_RSAE_SHA256 5757 #define SSL_SIGN_RSA_PSS_SHA384 SSL_SIGN_RSA_PSS_RSAE_SHA384 5758 #define SSL_SIGN_RSA_PSS_SHA512 SSL_SIGN_RSA_PSS_RSAE_SHA512 5759 5760 // SSL_set_tlsext_status_type configures a client to request OCSP stapling if 5761 // |type| is |TLSEXT_STATUSTYPE_ocsp| and disables it otherwise. It returns one 5762 // on success and zero if handshake configuration has already been shed. 5763 // 5764 // Use |SSL_enable_ocsp_stapling| instead. 5765 OPENSSL_EXPORT int SSL_set_tlsext_status_type(SSL *ssl, int type); 5766 5767 // SSL_get_tlsext_status_type returns |TLSEXT_STATUSTYPE_ocsp| if the client 5768 // requested OCSP stapling and |TLSEXT_STATUSTYPE_nothing| otherwise. On the 5769 // client, this reflects whether OCSP stapling was enabled via, e.g., 5770 // |SSL_set_tlsext_status_type|. On the server, this is determined during the 5771 // handshake. It may be queried in callbacks set by |SSL_CTX_set_cert_cb|. The 5772 // result is undefined after the handshake completes. 5773 OPENSSL_EXPORT int SSL_get_tlsext_status_type(const SSL *ssl); 5774 5775 // SSL_set_tlsext_status_ocsp_resp sets the OCSP response. It returns one on 5776 // success and zero on error. On success, |ssl| takes ownership of |resp|, which 5777 // must have been allocated by |OPENSSL_malloc|. 5778 // 5779 // Use |SSL_set_ocsp_response| instead. 5780 OPENSSL_EXPORT int SSL_set_tlsext_status_ocsp_resp(SSL *ssl, uint8_t *resp, 5781 size_t resp_len); 5782 5783 // SSL_get_tlsext_status_ocsp_resp sets |*out| to point to the OCSP response 5784 // from the server. It returns the length of the response. If there was no 5785 // response, it sets |*out| to NULL and returns zero. 5786 // 5787 // Use |SSL_get0_ocsp_response| instead. 5788 // 5789 // WARNING: the returned data is not guaranteed to be well formed. 5790 OPENSSL_EXPORT size_t SSL_get_tlsext_status_ocsp_resp(const SSL *ssl, 5791 const uint8_t **out); 5792 5793 // SSL_CTX_set_tlsext_status_cb configures the legacy OpenSSL OCSP callback and 5794 // returns one. Though the type signature is the same, this callback has 5795 // different behavior for client and server connections: 5796 // 5797 // For clients, the callback is called after certificate verification. It should 5798 // return one for success, zero for a bad OCSP response, and a negative number 5799 // for internal error. Instead, handle this as part of certificate verification. 5800 // (Historically, OpenSSL verified certificates just before parsing stapled OCSP 5801 // responses, but BoringSSL fixes this ordering. All server credentials are 5802 // available during verification.) 5803 // 5804 // Do not use this callback as a server. It is provided for compatibility 5805 // purposes only. For servers, it is called to configure server credentials. It 5806 // should return |SSL_TLSEXT_ERR_OK| on success, |SSL_TLSEXT_ERR_NOACK| to 5807 // ignore OCSP requests, or |SSL_TLSEXT_ERR_ALERT_FATAL| on error. It is usually 5808 // used to fetch OCSP responses on demand, which is not ideal. Instead, treat 5809 // OCSP responses like other server credentials, such as certificates or SCT 5810 // lists. Configure, store, and refresh them eagerly. This avoids downtime if 5811 // the CA's OCSP responder is briefly offline. 5812 OPENSSL_EXPORT int SSL_CTX_set_tlsext_status_cb(SSL_CTX *ctx, 5813 int (*callback)(SSL *ssl, 5814 void *arg)); 5815 5816 // SSL_CTX_set_tlsext_status_arg sets additional data for 5817 // |SSL_CTX_set_tlsext_status_cb|'s callback and returns one. 5818 OPENSSL_EXPORT int SSL_CTX_set_tlsext_status_arg(SSL_CTX *ctx, void *arg); 5819 5820 // The following symbols are compatibility aliases for reason codes used when 5821 // receiving an alert from the peer. Use the other names instead, which fit the 5822 // naming convention. 5823 // 5824 // TODO(davidben): Fix references to |SSL_R_TLSV1_CERTIFICATE_REQUIRED| and 5825 // remove the compatibility value. The others come from OpenSSL. 5826 #define SSL_R_TLSV1_UNSUPPORTED_EXTENSION \ 5827 SSL_R_TLSV1_ALERT_UNSUPPORTED_EXTENSION 5828 #define SSL_R_TLSV1_CERTIFICATE_UNOBTAINABLE \ 5829 SSL_R_TLSV1_ALERT_CERTIFICATE_UNOBTAINABLE 5830 #define SSL_R_TLSV1_UNRECOGNIZED_NAME SSL_R_TLSV1_ALERT_UNRECOGNIZED_NAME 5831 #define SSL_R_TLSV1_BAD_CERTIFICATE_STATUS_RESPONSE \ 5832 SSL_R_TLSV1_ALERT_BAD_CERTIFICATE_STATUS_RESPONSE 5833 #define SSL_R_TLSV1_BAD_CERTIFICATE_HASH_VALUE \ 5834 SSL_R_TLSV1_ALERT_BAD_CERTIFICATE_HASH_VALUE 5835 #define SSL_R_TLSV1_CERTIFICATE_REQUIRED SSL_R_TLSV1_ALERT_CERTIFICATE_REQUIRED 5836 5837 // The following symbols are compatibility aliases for |SSL_GROUP_*|. 5838 #define SSL_CURVE_SECP256R1 SSL_GROUP_SECP256R1 5839 #define SSL_CURVE_SECP384R1 SSL_GROUP_SECP384R1 5840 #define SSL_CURVE_SECP521R1 SSL_GROUP_SECP521R1 5841 #define SSL_CURVE_X25519 SSL_GROUP_X25519 5842 #define SSL_CURVE_X25519_KYBER768_DRAFT00 SSL_GROUP_X25519_KYBER768_DRAFT00 5843 5844 // SSL_get_curve_id calls |SSL_get_group_id|. 5845 OPENSSL_EXPORT uint16_t SSL_get_curve_id(const SSL *ssl); 5846 5847 // SSL_get_curve_name calls |SSL_get_group_name|. 5848 OPENSSL_EXPORT const char *SSL_get_curve_name(uint16_t curve_id); 5849 5850 // SSL_get_all_curve_names calls |SSL_get_all_group_names|. 5851 OPENSSL_EXPORT size_t SSL_get_all_curve_names(const char **out, size_t max_out); 5852 5853 // SSL_CTX_set1_curves calls |SSL_CTX_set1_groups|. 5854 OPENSSL_EXPORT int SSL_CTX_set1_curves(SSL_CTX *ctx, const int *curves, 5855 size_t num_curves); 5856 5857 // SSL_set1_curves calls |SSL_set1_groups|. 5858 OPENSSL_EXPORT int SSL_set1_curves(SSL *ssl, const int *curves, 5859 size_t num_curves); 5860 5861 // SSL_CTX_set1_curves_list calls |SSL_CTX_set1_groups_list|. 5862 OPENSSL_EXPORT int SSL_CTX_set1_curves_list(SSL_CTX *ctx, const char *curves); 5863 5864 // SSL_set1_curves_list calls |SSL_set1_groups_list|. 5865 OPENSSL_EXPORT int SSL_set1_curves_list(SSL *ssl, const char *curves); 5866 5867 // TLSEXT_nid_unknown is a constant used in OpenSSL for 5868 // |SSL_get_negotiated_group| to return an unrecognized group. BoringSSL never 5869 // returns this value, but we define this constant for compatibility. 5870 #define TLSEXT_nid_unknown 0x1000000 5871 5872 // SSL_CTX_check_private_key returns one if |ctx| has both a certificate and 5873 // private key, and zero otherwise. 5874 // 5875 // This function does not check consistency because the library checks when the 5876 // certificate and key are individually configured. However, if the private key 5877 // is configured before the certificate, inconsistent private keys are silently 5878 // dropped. Some callers are inadvertently relying on this function to detect 5879 // when this happens. 5880 // 5881 // Instead, callers should configure the certificate first, then the private 5882 // key, checking for errors in each. This function is then unnecessary. 5883 OPENSSL_EXPORT int SSL_CTX_check_private_key(const SSL_CTX *ctx); 5884 5885 // SSL_check_private_key returns one if |ssl| has both a certificate and private 5886 // key, and zero otherwise. 5887 // 5888 // See discussion in |SSL_CTX_check_private_key|. 5889 OPENSSL_EXPORT int SSL_check_private_key(const SSL *ssl); 5890 5891 5892 // Compliance policy configurations 5893 // 5894 // A TLS connection has a large number of different parameters. Some are well 5895 // known, like cipher suites, but many are obscure and configuration functions 5896 // for them may not exist. These policy controls allow broad configuration 5897 // goals to be specified so that they can flow down to all the different 5898 // parameters of a TLS connection. 5899 5900 enum ssl_compliance_policy_t BORINGSSL_ENUM_INT { 5901 // ssl_compliance_policy_none does nothing. However, since setting this 5902 // doesn't undo other policies it's an error to try and set it. 5903 ssl_compliance_policy_none, 5904 5905 // ssl_compliance_policy_fips_202205 configures a TLS connection to use: 5906 // * TLS 1.2 or 1.3 5907 // * For TLS 1.2, only ECDHE_[RSA|ECDSA]_WITH_AES_*_GCM_SHA*. 5908 // * For TLS 1.3, only AES-GCM 5909 // * P-256 or P-384 for key agreement. 5910 // * For server signatures, only PKCS#1/PSS with SHA256/384/512, or ECDSA 5911 // with P-256 or P-384. 5912 // 5913 // Note: this policy can be configured even if BoringSSL has not been built in 5914 // FIPS mode. Call |FIPS_mode| to check that. 5915 // 5916 // Note: this setting aids with compliance with NIST requirements but does not 5917 // guarantee it. Careful reading of SP 800-52r2 is recommended. 5918 ssl_compliance_policy_fips_202205, 5919 5920 // ssl_compliance_policy_wpa3_192_202304 configures a TLS connection to use: 5921 // * TLS 1.2 or 1.3. 5922 // * For TLS 1.2, only TLS_ECDHE_[ECDSA|RSA]_WITH_AES_256_GCM_SHA384. 5923 // * For TLS 1.3, only AES-256-GCM. 5924 // * P-384 for key agreement. 5925 // * For handshake signatures, only ECDSA with P-384 and SHA-384, or RSA 5926 // with SHA-384 or SHA-512. 5927 // 5928 // No limitations on the certificate chain nor leaf public key are imposed, 5929 // other than by the supported signature algorithms. But WPA3's "192-bit" 5930 // mode requires at least P-384 or 3072-bit along the chain. The caller must 5931 // enforce this themselves on the verified chain using functions such as 5932 // |X509_STORE_CTX_get0_chain|. 5933 // 5934 // Note that this setting is less secure than the default. The 5935 // implementation risks of using a more obscure primitive like P-384 5936 // dominate other considerations. 5937 ssl_compliance_policy_wpa3_192_202304, 5938 5939 // ssl_compliance_policy_cnsa_202407 confingures a TLS connection to use: 5940 // * For TLS 1.3, AES-256-GCM over AES-128-GCM over ChaCha20-Poly1305. 5941 // 5942 // I.e. it ensures that AES-GCM will be used whenever the client supports it. 5943 // The cipher suite configuration mini-language can be used to similarly 5944 // configure prior TLS versions if they are enabled. 5945 ssl_compliance_policy_cnsa_202407, 5946 }; 5947 5948 // SSL_CTX_set_compliance_policy configures various aspects of |ctx| based on 5949 // the given policy requirements. Subsequently calling other functions that 5950 // configure |ctx| may override |policy|, or may not. This should be the final 5951 // configuration function called in order to have defined behaviour. It's a 5952 // fatal error if |policy| is |ssl_compliance_policy_none|. 5953 OPENSSL_EXPORT int SSL_CTX_set_compliance_policy( 5954 SSL_CTX *ctx, enum ssl_compliance_policy_t policy); 5955 5956 // SSL_CTX_get_compliance_policy returns the compliance policy configured on 5957 // |ctx|. 5958 OPENSSL_EXPORT enum ssl_compliance_policy_t SSL_CTX_get_compliance_policy( 5959 const SSL_CTX *ctx); 5960 5961 // SSL_set_compliance_policy acts the same as |SSL_CTX_set_compliance_policy|, 5962 // but only configures a single |SSL*|. 5963 OPENSSL_EXPORT int SSL_set_compliance_policy( 5964 SSL *ssl, enum ssl_compliance_policy_t policy); 5965 5966 // SSL_get_compliance_policy returns the compliance policy configured on 5967 // |ssl|. 5968 OPENSSL_EXPORT enum ssl_compliance_policy_t SSL_get_compliance_policy( 5969 const SSL *ssl); 5970 5971 // Nodejs compatibility section (hidden). 5972 // 5973 // These defines exist for node.js, with the hope that we can eliminate the 5974 // need for them over time. 5975 5976 #define SSLerr(function, reason) \ 5977 ERR_put_error(ERR_LIB_SSL, 0, reason, __FILE__, __LINE__) 5978 5979 5980 // Preprocessor compatibility section (hidden). 5981 // 5982 // Historically, a number of APIs were implemented in OpenSSL as macros and 5983 // constants to 'ctrl' functions. To avoid breaking #ifdefs in consumers, this 5984 // section defines a number of legacy macros. 5985 // 5986 // Although using either the CTRL values or their wrapper macros in #ifdefs is 5987 // still supported, the CTRL values may not be passed to |SSL_ctrl| and 5988 // |SSL_CTX_ctrl|. Call the functions (previously wrapper macros) instead. 5989 // 5990 // See PORTING.md in the BoringSSL source tree for a table of corresponding 5991 // functions. 5992 // https://boringssl.googlesource.com/boringssl/+/main/PORTING.md#Replacements-for-values 5993 5994 #define DTLS_CTRL_GET_TIMEOUT doesnt_exist 5995 #define DTLS_CTRL_HANDLE_TIMEOUT doesnt_exist 5996 #define SSL_CTRL_CHAIN doesnt_exist 5997 #define SSL_CTRL_CHAIN_CERT doesnt_exist 5998 #define SSL_CTRL_CHANNEL_ID doesnt_exist 5999 #define SSL_CTRL_CLEAR_EXTRA_CHAIN_CERTS doesnt_exist 6000 #define SSL_CTRL_CLEAR_MODE doesnt_exist 6001 #define SSL_CTRL_CLEAR_OPTIONS doesnt_exist 6002 #define SSL_CTRL_EXTRA_CHAIN_CERT doesnt_exist 6003 #define SSL_CTRL_GET_CHAIN_CERTS doesnt_exist 6004 #define SSL_CTRL_GET_CHANNEL_ID doesnt_exist 6005 #define SSL_CTRL_GET_CLIENT_CERT_TYPES doesnt_exist 6006 #define SSL_CTRL_GET_EXTRA_CHAIN_CERTS doesnt_exist 6007 #define SSL_CTRL_GET_MAX_CERT_LIST doesnt_exist 6008 #define SSL_CTRL_GET_NEGOTIATED_GROUP doesnt_exist 6009 #define SSL_CTRL_GET_NUM_RENEGOTIATIONS doesnt_exist 6010 #define SSL_CTRL_GET_READ_AHEAD doesnt_exist 6011 #define SSL_CTRL_GET_RI_SUPPORT doesnt_exist 6012 #define SSL_CTRL_GET_SERVER_TMP_KEY doesnt_exist 6013 #define SSL_CTRL_GET_SESSION_REUSED doesnt_exist 6014 #define SSL_CTRL_GET_SESS_CACHE_MODE doesnt_exist 6015 #define SSL_CTRL_GET_SESS_CACHE_SIZE doesnt_exist 6016 #define SSL_CTRL_GET_TLSEXT_TICKET_KEYS doesnt_exist 6017 #define SSL_CTRL_GET_TOTAL_RENEGOTIATIONS doesnt_exist 6018 #define SSL_CTRL_MODE doesnt_exist 6019 #define SSL_CTRL_NEED_TMP_RSA doesnt_exist 6020 #define SSL_CTRL_OPTIONS doesnt_exist 6021 #define SSL_CTRL_SESS_NUMBER doesnt_exist 6022 #define SSL_CTRL_SET_CURVES doesnt_exist 6023 #define SSL_CTRL_SET_CURVES_LIST doesnt_exist 6024 #define SSL_CTRL_SET_GROUPS doesnt_exist 6025 #define SSL_CTRL_SET_GROUPS_LIST doesnt_exist 6026 #define SSL_CTRL_SET_ECDH_AUTO doesnt_exist 6027 #define SSL_CTRL_SET_MAX_CERT_LIST doesnt_exist 6028 #define SSL_CTRL_SET_MAX_SEND_FRAGMENT doesnt_exist 6029 #define SSL_CTRL_SET_MSG_CALLBACK doesnt_exist 6030 #define SSL_CTRL_SET_MSG_CALLBACK_ARG doesnt_exist 6031 #define SSL_CTRL_SET_MTU doesnt_exist 6032 #define SSL_CTRL_SET_READ_AHEAD doesnt_exist 6033 #define SSL_CTRL_SET_SESS_CACHE_MODE doesnt_exist 6034 #define SSL_CTRL_SET_SESS_CACHE_SIZE doesnt_exist 6035 #define SSL_CTRL_SET_TLSEXT_HOSTNAME doesnt_exist 6036 #define SSL_CTRL_SET_TLSEXT_SERVERNAME_ARG doesnt_exist 6037 #define SSL_CTRL_SET_TLSEXT_SERVERNAME_CB doesnt_exist 6038 #define SSL_CTRL_SET_TLSEXT_TICKET_KEYS doesnt_exist 6039 #define SSL_CTRL_SET_TLSEXT_TICKET_KEY_CB doesnt_exist 6040 #define SSL_CTRL_SET_TMP_DH doesnt_exist 6041 #define SSL_CTRL_SET_TMP_DH_CB doesnt_exist 6042 #define SSL_CTRL_SET_TMP_ECDH doesnt_exist 6043 #define SSL_CTRL_SET_TMP_ECDH_CB doesnt_exist 6044 #define SSL_CTRL_SET_TMP_RSA doesnt_exist 6045 #define SSL_CTRL_SET_TMP_RSA_CB doesnt_exist 6046 6047 // |BORINGSSL_PREFIX| already makes each of these symbols into macros, so there 6048 // is no need to define conflicting macros. 6049 #if !defined(BORINGSSL_PREFIX) 6050 6051 #define DTLSv1_get_timeout DTLSv1_get_timeout 6052 #define DTLSv1_handle_timeout DTLSv1_handle_timeout 6053 #define SSL_CTX_add0_chain_cert SSL_CTX_add0_chain_cert 6054 #define SSL_CTX_add1_chain_cert SSL_CTX_add1_chain_cert 6055 #define SSL_CTX_add_extra_chain_cert SSL_CTX_add_extra_chain_cert 6056 #define SSL_CTX_clear_extra_chain_certs SSL_CTX_clear_extra_chain_certs 6057 #define SSL_CTX_clear_chain_certs SSL_CTX_clear_chain_certs 6058 #define SSL_CTX_clear_mode SSL_CTX_clear_mode 6059 #define SSL_CTX_clear_options SSL_CTX_clear_options 6060 #define SSL_CTX_get0_chain_certs SSL_CTX_get0_chain_certs 6061 #define SSL_CTX_get_extra_chain_certs SSL_CTX_get_extra_chain_certs 6062 #define SSL_CTX_get_max_cert_list SSL_CTX_get_max_cert_list 6063 #define SSL_CTX_get_mode SSL_CTX_get_mode 6064 #define SSL_CTX_get_options SSL_CTX_get_options 6065 #define SSL_CTX_get_read_ahead SSL_CTX_get_read_ahead 6066 #define SSL_CTX_get_session_cache_mode SSL_CTX_get_session_cache_mode 6067 #define SSL_CTX_get_tlsext_ticket_keys SSL_CTX_get_tlsext_ticket_keys 6068 #define SSL_CTX_need_tmp_RSA SSL_CTX_need_tmp_RSA 6069 #define SSL_CTX_sess_get_cache_size SSL_CTX_sess_get_cache_size 6070 #define SSL_CTX_sess_number SSL_CTX_sess_number 6071 #define SSL_CTX_sess_set_cache_size SSL_CTX_sess_set_cache_size 6072 #define SSL_CTX_set0_chain SSL_CTX_set0_chain 6073 #define SSL_CTX_set1_chain SSL_CTX_set1_chain 6074 #define SSL_CTX_set1_curves SSL_CTX_set1_curves 6075 #define SSL_CTX_set1_groups SSL_CTX_set1_groups 6076 #define SSL_CTX_set_max_cert_list SSL_CTX_set_max_cert_list 6077 #define SSL_CTX_set_max_send_fragment SSL_CTX_set_max_send_fragment 6078 #define SSL_CTX_set_mode SSL_CTX_set_mode 6079 #define SSL_CTX_set_msg_callback_arg SSL_CTX_set_msg_callback_arg 6080 #define SSL_CTX_set_options SSL_CTX_set_options 6081 #define SSL_CTX_set_read_ahead SSL_CTX_set_read_ahead 6082 #define SSL_CTX_set_session_cache_mode SSL_CTX_set_session_cache_mode 6083 #define SSL_CTX_set_tlsext_servername_arg SSL_CTX_set_tlsext_servername_arg 6084 #define SSL_CTX_set_tlsext_servername_callback \ 6085 SSL_CTX_set_tlsext_servername_callback 6086 #define SSL_CTX_set_tlsext_ticket_key_cb SSL_CTX_set_tlsext_ticket_key_cb 6087 #define SSL_CTX_set_tlsext_ticket_keys SSL_CTX_set_tlsext_ticket_keys 6088 #define SSL_CTX_set_tmp_dh SSL_CTX_set_tmp_dh 6089 #define SSL_CTX_set_tmp_ecdh SSL_CTX_set_tmp_ecdh 6090 #define SSL_CTX_set_tmp_rsa SSL_CTX_set_tmp_rsa 6091 #define SSL_add0_chain_cert SSL_add0_chain_cert 6092 #define SSL_add1_chain_cert SSL_add1_chain_cert 6093 #define SSL_clear_chain_certs SSL_clear_chain_certs 6094 #define SSL_clear_mode SSL_clear_mode 6095 #define SSL_clear_options SSL_clear_options 6096 #define SSL_get0_certificate_types SSL_get0_certificate_types 6097 #define SSL_get0_chain_certs SSL_get0_chain_certs 6098 #define SSL_get_max_cert_list SSL_get_max_cert_list 6099 #define SSL_get_mode SSL_get_mode 6100 #define SSL_get_negotiated_group SSL_get_negotiated_group 6101 #define SSL_get_options SSL_get_options 6102 #define SSL_get_secure_renegotiation_support \ 6103 SSL_get_secure_renegotiation_support 6104 #define SSL_need_tmp_RSA SSL_need_tmp_RSA 6105 #define SSL_num_renegotiations SSL_num_renegotiations 6106 #define SSL_session_reused SSL_session_reused 6107 #define SSL_set0_chain SSL_set0_chain 6108 #define SSL_set1_chain SSL_set1_chain 6109 #define SSL_set1_curves SSL_set1_curves 6110 #define SSL_set1_groups SSL_set1_groups 6111 #define SSL_set_max_cert_list SSL_set_max_cert_list 6112 #define SSL_set_max_send_fragment SSL_set_max_send_fragment 6113 #define SSL_set_mode SSL_set_mode 6114 #define SSL_set_msg_callback_arg SSL_set_msg_callback_arg 6115 #define SSL_set_mtu SSL_set_mtu 6116 #define SSL_set_options SSL_set_options 6117 #define SSL_set_tlsext_host_name SSL_set_tlsext_host_name 6118 #define SSL_set_tmp_dh SSL_set_tmp_dh 6119 #define SSL_set_tmp_ecdh SSL_set_tmp_ecdh 6120 #define SSL_set_tmp_rsa SSL_set_tmp_rsa 6121 #define SSL_total_renegotiations SSL_total_renegotiations 6122 6123 #endif // !defined(BORINGSSL_PREFIX) 6124 6125 6126 #if defined(__cplusplus) 6127 } // extern C 6128 6129 #if !defined(BORINGSSL_NO_CXX) 6130 6131 extern "C++" { 6132 6133 BSSL_NAMESPACE_BEGIN 6134 6135 BORINGSSL_MAKE_DELETER(SSL, SSL_free) 6136 BORINGSSL_MAKE_DELETER(SSL_CREDENTIAL, SSL_CREDENTIAL_free) 6137 BORINGSSL_MAKE_UP_REF(SSL_CREDENTIAL, SSL_CREDENTIAL_up_ref) 6138 BORINGSSL_MAKE_DELETER(SSL_CTX, SSL_CTX_free) 6139 BORINGSSL_MAKE_UP_REF(SSL_CTX, SSL_CTX_up_ref) 6140 BORINGSSL_MAKE_DELETER(SSL_ECH_KEYS, SSL_ECH_KEYS_free) 6141 BORINGSSL_MAKE_UP_REF(SSL_ECH_KEYS, SSL_ECH_KEYS_up_ref) 6142 BORINGSSL_MAKE_DELETER(SSL_SESSION, SSL_SESSION_free) 6143 BORINGSSL_MAKE_UP_REF(SSL_SESSION, SSL_SESSION_up_ref) 6144 6145 6146 // *** DEPRECATED EXPERIMENT — DO NOT USE *** 6147 // 6148 // Split handshakes. 6149 // 6150 // WARNING: This mechanism is deprecated and should not be used. It is very 6151 // fragile and difficult to use correctly. The relationship between 6152 // configuration options across the two halves is ill-defined and not 6153 // self-consistent. Additionally, version skew across the two halves risks 6154 // unusual behavior and connection failure. New development should use the 6155 // handshake hints API. Existing deployments should migrate to handshake hints 6156 // to reduce the risk of service outages. 6157 // 6158 // Split handshakes allows the handshake part of a TLS connection to be 6159 // performed in a different process (or on a different machine) than the data 6160 // exchange. This only applies to servers. 6161 // 6162 // In the first part of a split handshake, an |SSL| (where the |SSL_CTX| has 6163 // been configured with |SSL_CTX_set_handoff_mode|) is used normally. Once the 6164 // ClientHello message has been received, the handshake will stop and 6165 // |SSL_get_error| will indicate |SSL_ERROR_HANDOFF|. At this point (and only 6166 // at this point), |SSL_serialize_handoff| can be called to write the “handoff” 6167 // state of the connection. 6168 // 6169 // Elsewhere, a fresh |SSL| can be used with |SSL_apply_handoff| to continue 6170 // the connection. The connection from the client is fed into this |SSL|, and 6171 // the handshake resumed. When the handshake stops again and |SSL_get_error| 6172 // indicates |SSL_ERROR_HANDBACK|, |SSL_serialize_handback| should be called to 6173 // serialize the state of the handshake again. 6174 // 6175 // Back at the first location, a fresh |SSL| can be used with 6176 // |SSL_apply_handback|. Then the client's connection can be processed mostly 6177 // as normal. 6178 // 6179 // Lastly, when a connection is in the handoff state, whether or not 6180 // |SSL_serialize_handoff| is called, |SSL_decline_handoff| will move it back 6181 // into a normal state where the connection can proceed without impact. 6182 // 6183 // WARNING: Currently only works with TLS 1.0–1.2. 6184 // WARNING: The serialisation formats are not yet stable: version skew may be 6185 // fatal. 6186 // WARNING: The handback data contains sensitive key material and must be 6187 // protected. 6188 // WARNING: Some calls on the final |SSL| will not work. Just as an example, 6189 // calls like |SSL_get0_session_id_context| and |SSL_get_privatekey| won't 6190 // work because the certificate used for handshaking isn't available. 6191 // WARNING: |SSL_apply_handoff| may trigger “msg” callback calls. 6192 6193 OPENSSL_EXPORT void SSL_CTX_set_handoff_mode(SSL_CTX *ctx, bool on); 6194 OPENSSL_EXPORT void SSL_set_handoff_mode(SSL *SSL, bool on); 6195 OPENSSL_EXPORT bool SSL_serialize_handoff(const SSL *ssl, CBB *out, 6196 SSL_CLIENT_HELLO *out_hello); 6197 OPENSSL_EXPORT bool SSL_decline_handoff(SSL *ssl); 6198 OPENSSL_EXPORT bool SSL_apply_handoff(SSL *ssl, Span<const uint8_t> handoff); 6199 OPENSSL_EXPORT bool SSL_serialize_handback(const SSL *ssl, CBB *out); 6200 OPENSSL_EXPORT bool SSL_apply_handback(SSL *ssl, Span<const uint8_t> handback); 6201 6202 // SSL_get_traffic_secrets sets |*out_read_traffic_secret| and 6203 // |*out_write_traffic_secret| to reference the current TLS 1.3 traffic secrets 6204 // for |ssl|. It returns true on success and false on error. 6205 // 6206 // This function is only valid on TLS 1.3 connections that have completed the 6207 // handshake. It is not valid for QUIC or DTLS, where multiple traffic secrets 6208 // may be active at a time. 6209 OPENSSL_EXPORT bool SSL_get_traffic_secrets( 6210 const SSL *ssl, Span<const uint8_t> *out_read_traffic_secret, 6211 Span<const uint8_t> *out_write_traffic_secret); 6212 6213 // SSL_CTX_set_aes_hw_override_for_testing sets |override_value| to 6214 // override checking for aes hardware support for testing. If |override_value| 6215 // is set to true, the library will behave as if aes hardware support is 6216 // present. If it is set to false, the library will behave as if aes hardware 6217 // support is not present. 6218 OPENSSL_EXPORT void SSL_CTX_set_aes_hw_override_for_testing( 6219 SSL_CTX *ctx, bool override_value); 6220 6221 // SSL_set_aes_hw_override_for_testing acts the same as 6222 // |SSL_CTX_set_aes_override_for_testing| but only configures a single |SSL*|. 6223 OPENSSL_EXPORT void SSL_set_aes_hw_override_for_testing(SSL *ssl, 6224 bool override_value); 6225 6226 BSSL_NAMESPACE_END 6227 6228 } // extern C++ 6229 6230 #endif // !defined(BORINGSSL_NO_CXX) 6231 6232 #endif 6233 6234 #define SSL_R_APP_DATA_IN_HANDSHAKE 100 6235 #define SSL_R_ATTEMPT_TO_REUSE_SESSION_IN_DIFFERENT_CONTEXT 101 6236 #define SSL_R_BAD_ALERT 102 6237 #define SSL_R_BAD_CHANGE_CIPHER_SPEC 103 6238 #define SSL_R_BAD_DATA_RETURNED_BY_CALLBACK 104 6239 #define SSL_R_BAD_DH_P_LENGTH 105 6240 #define SSL_R_BAD_DIGEST_LENGTH 106 6241 #define SSL_R_BAD_ECC_CERT 107 6242 #define SSL_R_BAD_ECPOINT 108 6243 #define SSL_R_BAD_HANDSHAKE_RECORD 109 6244 #define SSL_R_BAD_HELLO_REQUEST 110 6245 #define SSL_R_BAD_LENGTH 111 6246 #define SSL_R_BAD_PACKET_LENGTH 112 6247 #define SSL_R_BAD_RSA_ENCRYPT 113 6248 #define SSL_R_BAD_SIGNATURE 114 6249 #define SSL_R_BAD_SRTP_MKI_VALUE 115 6250 #define SSL_R_BAD_SRTP_PROTECTION_PROFILE_LIST 116 6251 #define SSL_R_BAD_SSL_FILETYPE 117 6252 #define SSL_R_BAD_WRITE_RETRY 118 6253 #define SSL_R_BIO_NOT_SET 119 6254 #define SSL_R_BN_LIB 120 6255 #define SSL_R_BUFFER_TOO_SMALL 121 6256 #define SSL_R_CA_DN_LENGTH_MISMATCH 122 6257 #define SSL_R_CA_DN_TOO_LONG 123 6258 #define SSL_R_CCS_RECEIVED_EARLY 124 6259 #define SSL_R_CERTIFICATE_VERIFY_FAILED 125 6260 #define SSL_R_CERT_CB_ERROR 126 6261 #define SSL_R_CERT_LENGTH_MISMATCH 127 6262 #define SSL_R_CHANNEL_ID_NOT_P256 128 6263 #define SSL_R_CHANNEL_ID_SIGNATURE_INVALID 129 6264 #define SSL_R_CIPHER_OR_HASH_UNAVAILABLE 130 6265 #define SSL_R_CLIENTHELLO_PARSE_FAILED 131 6266 #define SSL_R_CLIENTHELLO_TLSEXT 132 6267 #define SSL_R_CONNECTION_REJECTED 133 6268 #define SSL_R_CONNECTION_TYPE_NOT_SET 134 6269 #define SSL_R_CUSTOM_EXTENSION_ERROR 135 6270 #define SSL_R_DATA_LENGTH_TOO_LONG 136 6271 #define SSL_R_DECODE_ERROR 137 6272 #define SSL_R_DECRYPTION_FAILED 138 6273 #define SSL_R_DECRYPTION_FAILED_OR_BAD_RECORD_MAC 139 6274 #define SSL_R_DH_PUBLIC_VALUE_LENGTH_IS_WRONG 140 6275 #define SSL_R_DH_P_TOO_LONG 141 6276 #define SSL_R_DIGEST_CHECK_FAILED 142 6277 #define SSL_R_DTLS_MESSAGE_TOO_BIG 143 6278 #define SSL_R_ECC_CERT_NOT_FOR_SIGNING 144 6279 #define SSL_R_EMS_STATE_INCONSISTENT 145 6280 #define SSL_R_ENCRYPTED_LENGTH_TOO_LONG 146 6281 #define SSL_R_ERROR_ADDING_EXTENSION 147 6282 #define SSL_R_ERROR_IN_RECEIVED_CIPHER_LIST 148 6283 #define SSL_R_ERROR_PARSING_EXTENSION 149 6284 #define SSL_R_EXCESSIVE_MESSAGE_SIZE 150 6285 #define SSL_R_EXTRA_DATA_IN_MESSAGE 151 6286 #define SSL_R_FRAGMENT_MISMATCH 152 6287 #define SSL_R_GOT_NEXT_PROTO_WITHOUT_EXTENSION 153 6288 #define SSL_R_HANDSHAKE_FAILURE_ON_CLIENT_HELLO 154 6289 #define SSL_R_HTTPS_PROXY_REQUEST 155 6290 #define SSL_R_HTTP_REQUEST 156 6291 #define SSL_R_INAPPROPRIATE_FALLBACK 157 6292 #define SSL_R_INVALID_COMMAND 158 6293 #define SSL_R_INVALID_MESSAGE 159 6294 #define SSL_R_INVALID_SSL_SESSION 160 6295 #define SSL_R_INVALID_TICKET_KEYS_LENGTH 161 6296 #define SSL_R_LENGTH_MISMATCH 162 6297 #define SSL_R_MISSING_EXTENSION 164 6298 #define SSL_R_MISSING_RSA_CERTIFICATE 165 6299 #define SSL_R_MISSING_TMP_DH_KEY 166 6300 #define SSL_R_MISSING_TMP_ECDH_KEY 167 6301 #define SSL_R_MIXED_SPECIAL_OPERATOR_WITH_GROUPS 168 6302 #define SSL_R_MTU_TOO_SMALL 169 6303 #define SSL_R_NEGOTIATED_BOTH_NPN_AND_ALPN 170 6304 #define SSL_R_NESTED_GROUP 171 6305 #define SSL_R_NO_CERTIFICATES_RETURNED 172 6306 #define SSL_R_NO_CERTIFICATE_ASSIGNED 173 6307 #define SSL_R_NO_CERTIFICATE_SET 174 6308 #define SSL_R_NO_CIPHERS_AVAILABLE 175 6309 #define SSL_R_NO_CIPHERS_PASSED 176 6310 #define SSL_R_NO_CIPHER_MATCH 177 6311 #define SSL_R_NO_COMPRESSION_SPECIFIED 178 6312 #define SSL_R_NO_METHOD_SPECIFIED 179 6313 #define SSL_R_NO_PRIVATE_KEY_ASSIGNED 181 6314 #define SSL_R_NO_RENEGOTIATION 182 6315 #define SSL_R_NO_REQUIRED_DIGEST 183 6316 #define SSL_R_NO_SHARED_CIPHER 184 6317 #define SSL_R_NULL_SSL_CTX 185 6318 #define SSL_R_NULL_SSL_METHOD_PASSED 186 6319 #define SSL_R_OLD_SESSION_CIPHER_NOT_RETURNED 187 6320 #define SSL_R_OLD_SESSION_VERSION_NOT_RETURNED 188 6321 #define SSL_R_OUTPUT_ALIASES_INPUT 189 6322 #define SSL_R_PARSE_TLSEXT 190 6323 #define SSL_R_PATH_TOO_LONG 191 6324 #define SSL_R_PEER_DID_NOT_RETURN_A_CERTIFICATE 192 6325 #define SSL_R_PEER_ERROR_UNSUPPORTED_CERTIFICATE_TYPE 193 6326 #define SSL_R_PROTOCOL_IS_SHUTDOWN 194 6327 #define SSL_R_PSK_IDENTITY_NOT_FOUND 195 6328 #define SSL_R_PSK_NO_CLIENT_CB 196 6329 #define SSL_R_PSK_NO_SERVER_CB 197 6330 #define SSL_R_READ_TIMEOUT_EXPIRED 198 6331 #define SSL_R_RECORD_LENGTH_MISMATCH 199 6332 #define SSL_R_RECORD_TOO_LARGE 200 6333 #define SSL_R_RENEGOTIATION_ENCODING_ERR 201 6334 #define SSL_R_RENEGOTIATION_MISMATCH 202 6335 #define SSL_R_REQUIRED_CIPHER_MISSING 203 6336 #define SSL_R_RESUMED_EMS_SESSION_WITHOUT_EMS_EXTENSION 204 6337 #define SSL_R_RESUMED_NON_EMS_SESSION_WITH_EMS_EXTENSION 205 6338 #define SSL_R_SCSV_RECEIVED_WHEN_RENEGOTIATING 206 6339 #define SSL_R_SERVERHELLO_TLSEXT 207 6340 #define SSL_R_SESSION_ID_CONTEXT_UNINITIALIZED 208 6341 #define SSL_R_SESSION_MAY_NOT_BE_CREATED 209 6342 #define SSL_R_SIGNATURE_ALGORITHMS_EXTENSION_SENT_BY_SERVER 210 6343 #define SSL_R_SRTP_COULD_NOT_ALLOCATE_PROFILES 211 6344 #define SSL_R_SRTP_UNKNOWN_PROTECTION_PROFILE 212 6345 #define SSL_R_SSL3_EXT_INVALID_SERVERNAME 213 6346 #define SSL_R_SSL_CTX_HAS_NO_DEFAULT_SSL_VERSION 214 6347 #define SSL_R_SSL_HANDSHAKE_FAILURE 215 6348 #define SSL_R_SSL_SESSION_ID_CONTEXT_TOO_LONG 216 6349 #define SSL_R_TLS_PEER_DID_NOT_RESPOND_WITH_CERTIFICATE_LIST 217 6350 #define SSL_R_TLS_RSA_ENCRYPTED_VALUE_LENGTH_IS_WRONG 218 6351 #define SSL_R_TOO_MANY_EMPTY_FRAGMENTS 219 6352 #define SSL_R_TOO_MANY_WARNING_ALERTS 220 6353 #define SSL_R_UNABLE_TO_FIND_ECDH_PARAMETERS 221 6354 #define SSL_R_UNEXPECTED_EXTENSION 222 6355 #define SSL_R_UNEXPECTED_MESSAGE 223 6356 #define SSL_R_UNEXPECTED_OPERATOR_IN_GROUP 224 6357 #define SSL_R_UNEXPECTED_RECORD 225 6358 #define SSL_R_UNINITIALIZED 226 6359 #define SSL_R_UNKNOWN_ALERT_TYPE 227 6360 #define SSL_R_UNKNOWN_CERTIFICATE_TYPE 228 6361 #define SSL_R_UNKNOWN_CIPHER_RETURNED 229 6362 #define SSL_R_UNKNOWN_CIPHER_TYPE 230 6363 #define SSL_R_UNKNOWN_DIGEST 231 6364 #define SSL_R_UNKNOWN_KEY_EXCHANGE_TYPE 232 6365 #define SSL_R_UNKNOWN_PROTOCOL 233 6366 #define SSL_R_UNKNOWN_SSL_VERSION 234 6367 #define SSL_R_UNKNOWN_STATE 235 6368 #define SSL_R_UNSAFE_LEGACY_RENEGOTIATION_DISABLED 236 6369 #define SSL_R_UNSUPPORTED_CIPHER 237 6370 #define SSL_R_UNSUPPORTED_COMPRESSION_ALGORITHM 238 6371 #define SSL_R_UNSUPPORTED_ELLIPTIC_CURVE 239 6372 #define SSL_R_UNSUPPORTED_PROTOCOL 240 6373 #define SSL_R_WRONG_CERTIFICATE_TYPE 241 6374 #define SSL_R_WRONG_CIPHER_RETURNED 242 6375 #define SSL_R_WRONG_CURVE 243 6376 #define SSL_R_WRONG_MESSAGE_TYPE 244 6377 #define SSL_R_WRONG_SIGNATURE_TYPE 245 6378 #define SSL_R_WRONG_SSL_VERSION 246 6379 #define SSL_R_WRONG_VERSION_NUMBER 247 6380 #define SSL_R_X509_LIB 248 6381 #define SSL_R_X509_VERIFICATION_SETUP_PROBLEMS 249 6382 #define SSL_R_SHUTDOWN_WHILE_IN_INIT 250 6383 #define SSL_R_INVALID_OUTER_RECORD_TYPE 251 6384 #define SSL_R_UNSUPPORTED_PROTOCOL_FOR_CUSTOM_KEY 252 6385 #define SSL_R_NO_COMMON_SIGNATURE_ALGORITHMS 253 6386 #define SSL_R_DOWNGRADE_DETECTED 254 6387 #define SSL_R_EXCESS_HANDSHAKE_DATA 255 6388 #define SSL_R_INVALID_COMPRESSION_LIST 256 6389 #define SSL_R_DUPLICATE_EXTENSION 257 6390 #define SSL_R_MISSING_KEY_SHARE 258 6391 #define SSL_R_INVALID_ALPN_PROTOCOL 259 6392 #define SSL_R_TOO_MANY_KEY_UPDATES 260 6393 #define SSL_R_BLOCK_CIPHER_PAD_IS_WRONG 261 6394 #define SSL_R_NO_CIPHERS_SPECIFIED 262 6395 #define SSL_R_RENEGOTIATION_EMS_MISMATCH 263 6396 #define SSL_R_DUPLICATE_KEY_SHARE 264 6397 #define SSL_R_NO_GROUPS_SPECIFIED 265 6398 #define SSL_R_NO_SHARED_GROUP 266 6399 #define SSL_R_PRE_SHARED_KEY_MUST_BE_LAST 267 6400 #define SSL_R_OLD_SESSION_PRF_HASH_MISMATCH 268 6401 #define SSL_R_INVALID_SCT_LIST 269 6402 #define SSL_R_TOO_MUCH_SKIPPED_EARLY_DATA 270 6403 #define SSL_R_PSK_IDENTITY_BINDER_COUNT_MISMATCH 271 6404 #define SSL_R_CANNOT_PARSE_LEAF_CERT 272 6405 #define SSL_R_SERVER_CERT_CHANGED 273 6406 #define SSL_R_CERTIFICATE_AND_PRIVATE_KEY_MISMATCH 274 6407 #define SSL_R_CANNOT_HAVE_BOTH_PRIVKEY_AND_METHOD 275 6408 #define SSL_R_TICKET_ENCRYPTION_FAILED 276 6409 #define SSL_R_ALPN_MISMATCH_ON_EARLY_DATA 277 6410 #define SSL_R_WRONG_VERSION_ON_EARLY_DATA 278 6411 #define SSL_R_UNEXPECTED_EXTENSION_ON_EARLY_DATA 279 6412 #define SSL_R_NO_SUPPORTED_VERSIONS_ENABLED 280 6413 #define SSL_R_EMPTY_HELLO_RETRY_REQUEST 282 6414 #define SSL_R_EARLY_DATA_NOT_IN_USE 283 6415 #define SSL_R_HANDSHAKE_NOT_COMPLETE 284 6416 #define SSL_R_NEGOTIATED_TB_WITHOUT_EMS_OR_RI 285 6417 #define SSL_R_SERVER_ECHOED_INVALID_SESSION_ID 286 6418 #define SSL_R_PRIVATE_KEY_OPERATION_FAILED 287 6419 #define SSL_R_SECOND_SERVERHELLO_VERSION_MISMATCH 288 6420 #define SSL_R_OCSP_CB_ERROR 289 6421 #define SSL_R_SSL_SESSION_ID_TOO_LONG 290 6422 #define SSL_R_APPLICATION_DATA_ON_SHUTDOWN 291 6423 #define SSL_R_CERT_DECOMPRESSION_FAILED 292 6424 #define SSL_R_UNCOMPRESSED_CERT_TOO_LARGE 293 6425 #define SSL_R_UNKNOWN_CERT_COMPRESSION_ALG 294 6426 #define SSL_R_INVALID_SIGNATURE_ALGORITHM 295 6427 #define SSL_R_DUPLICATE_SIGNATURE_ALGORITHM 296 6428 #define SSL_R_TLS13_DOWNGRADE 297 6429 #define SSL_R_QUIC_INTERNAL_ERROR 298 6430 #define SSL_R_WRONG_ENCRYPTION_LEVEL_RECEIVED 299 6431 #define SSL_R_TOO_MUCH_READ_EARLY_DATA 300 6432 #define SSL_R_INVALID_DELEGATED_CREDENTIAL 301 6433 #define SSL_R_KEY_USAGE_BIT_INCORRECT 302 6434 #define SSL_R_INCONSISTENT_CLIENT_HELLO 303 6435 #define SSL_R_CIPHER_MISMATCH_ON_EARLY_DATA 304 6436 #define SSL_R_QUIC_TRANSPORT_PARAMETERS_MISCONFIGURED 305 6437 #define SSL_R_UNEXPECTED_COMPATIBILITY_MODE 306 6438 #define SSL_R_NO_APPLICATION_PROTOCOL 307 6439 #define SSL_R_NEGOTIATED_ALPS_WITHOUT_ALPN 308 6440 #define SSL_R_ALPS_MISMATCH_ON_EARLY_DATA 309 6441 #define SSL_R_ECH_SERVER_CONFIG_AND_PRIVATE_KEY_MISMATCH 310 6442 #define SSL_R_ECH_SERVER_CONFIG_UNSUPPORTED_EXTENSION 311 6443 #define SSL_R_UNSUPPORTED_ECH_SERVER_CONFIG 312 6444 #define SSL_R_ECH_SERVER_WOULD_HAVE_NO_RETRY_CONFIGS 313 6445 #define SSL_R_INVALID_CLIENT_HELLO_INNER 314 6446 #define SSL_R_INVALID_ALPN_PROTOCOL_LIST 315 6447 #define SSL_R_COULD_NOT_PARSE_HINTS 316 6448 #define SSL_R_INVALID_ECH_PUBLIC_NAME 317 6449 #define SSL_R_INVALID_ECH_CONFIG_LIST 318 6450 #define SSL_R_ECH_REJECTED 319 6451 #define SSL_R_INVALID_OUTER_EXTENSION 320 6452 #define SSL_R_INCONSISTENT_ECH_NEGOTIATION 321 6453 #define SSL_R_INVALID_ALPS_CODEPOINT 322 6454 #define SSL_R_NO_MATCHING_ISSUER 323 6455 #define SSL_R_INVALID_SPAKE2PLUSV1_VALUE 324 6456 #define SSL_R_PAKE_EXHAUSTED 325 6457 #define SSL_R_PEER_PAKE_MISMATCH 326 6458 #define SSL_R_UNSUPPORTED_CREDENTIAL_LIST 327 6459 #define SSL_R_INVALID_TRUST_ANCHOR_LIST 328 6460 #define SSL_R_INVALID_CERTIFICATE_PROPERTY_LIST 329 6461 #define SSL_R_SSLV3_ALERT_CLOSE_NOTIFY 1000 6462 #define SSL_R_SSLV3_ALERT_UNEXPECTED_MESSAGE 1010 6463 #define SSL_R_SSLV3_ALERT_BAD_RECORD_MAC 1020 6464 #define SSL_R_TLSV1_ALERT_DECRYPTION_FAILED 1021 6465 #define SSL_R_TLSV1_ALERT_RECORD_OVERFLOW 1022 6466 #define SSL_R_SSLV3_ALERT_DECOMPRESSION_FAILURE 1030 6467 #define SSL_R_SSLV3_ALERT_HANDSHAKE_FAILURE 1040 6468 #define SSL_R_SSLV3_ALERT_NO_CERTIFICATE 1041 6469 #define SSL_R_SSLV3_ALERT_BAD_CERTIFICATE 1042 6470 #define SSL_R_SSLV3_ALERT_UNSUPPORTED_CERTIFICATE 1043 6471 #define SSL_R_SSLV3_ALERT_CERTIFICATE_REVOKED 1044 6472 #define SSL_R_SSLV3_ALERT_CERTIFICATE_EXPIRED 1045 6473 #define SSL_R_SSLV3_ALERT_CERTIFICATE_UNKNOWN 1046 6474 #define SSL_R_SSLV3_ALERT_ILLEGAL_PARAMETER 1047 6475 #define SSL_R_TLSV1_ALERT_UNKNOWN_CA 1048 6476 #define SSL_R_TLSV1_ALERT_ACCESS_DENIED 1049 6477 #define SSL_R_TLSV1_ALERT_DECODE_ERROR 1050 6478 #define SSL_R_TLSV1_ALERT_DECRYPT_ERROR 1051 6479 #define SSL_R_TLSV1_ALERT_EXPORT_RESTRICTION 1060 6480 #define SSL_R_TLSV1_ALERT_PROTOCOL_VERSION 1070 6481 #define SSL_R_TLSV1_ALERT_INSUFFICIENT_SECURITY 1071 6482 #define SSL_R_TLSV1_ALERT_INTERNAL_ERROR 1080 6483 #define SSL_R_TLSV1_ALERT_INAPPROPRIATE_FALLBACK 1086 6484 #define SSL_R_TLSV1_ALERT_USER_CANCELLED 1090 6485 #define SSL_R_TLSV1_ALERT_NO_RENEGOTIATION 1100 6486 #define SSL_R_TLSV1_ALERT_UNSUPPORTED_EXTENSION 1110 6487 #define SSL_R_TLSV1_ALERT_CERTIFICATE_UNOBTAINABLE 1111 6488 #define SSL_R_TLSV1_ALERT_UNRECOGNIZED_NAME 1112 6489 #define SSL_R_TLSV1_ALERT_BAD_CERTIFICATE_STATUS_RESPONSE 1113 6490 #define SSL_R_TLSV1_ALERT_BAD_CERTIFICATE_HASH_VALUE 1114 6491 #define SSL_R_TLSV1_ALERT_UNKNOWN_PSK_IDENTITY 1115 6492 #define SSL_R_TLSV1_ALERT_CERTIFICATE_REQUIRED 1116 6493 #define SSL_R_TLSV1_ALERT_NO_APPLICATION_PROTOCOL 1120 6494 #define SSL_R_TLSV1_ALERT_ECH_REQUIRED 1121 6495 #define SSL_R_PAKE_AND_KEY_SHARE_NOT_ALLOWED 1122 6496 6497 #endif // OPENSSL_HEADER_SSL_H