jpayne@69: /* jpayne@69: * Copyright 1995-2022 The OpenSSL Project Authors. All Rights Reserved. jpayne@69: * Copyright (c) 2002, Oracle and/or its affiliates. All rights reserved jpayne@69: * Copyright 2005 Nokia. All rights reserved. jpayne@69: * jpayne@69: * Licensed under the OpenSSL license (the "License"). You may not use jpayne@69: * this file except in compliance with the License. You can obtain a copy jpayne@69: * in the file LICENSE in the source distribution or at jpayne@69: * https://www.openssl.org/source/license.html jpayne@69: */ jpayne@69: jpayne@69: #ifndef HEADER_SSL_H jpayne@69: # define HEADER_SSL_H jpayne@69: jpayne@69: # include jpayne@69: # include jpayne@69: # include jpayne@69: # include jpayne@69: # if OPENSSL_API_COMPAT < 0x10100000L jpayne@69: # include jpayne@69: # include jpayne@69: # include jpayne@69: # endif jpayne@69: # include jpayne@69: # include jpayne@69: # include jpayne@69: # include jpayne@69: jpayne@69: # include jpayne@69: # include jpayne@69: # include jpayne@69: # include jpayne@69: jpayne@69: #ifdef __cplusplus jpayne@69: extern "C" { jpayne@69: #endif jpayne@69: jpayne@69: /* OpenSSL version number for ASN.1 encoding of the session information */ jpayne@69: /*- jpayne@69: * Version 0 - initial version jpayne@69: * Version 1 - added the optional peer certificate jpayne@69: */ jpayne@69: # define SSL_SESSION_ASN1_VERSION 0x0001 jpayne@69: jpayne@69: # define SSL_MAX_SSL_SESSION_ID_LENGTH 32 jpayne@69: # define SSL_MAX_SID_CTX_LENGTH 32 jpayne@69: jpayne@69: # define SSL_MIN_RSA_MODULUS_LENGTH_IN_BYTES (512/8) jpayne@69: # define SSL_MAX_KEY_ARG_LENGTH 8 jpayne@69: # define SSL_MAX_MASTER_KEY_LENGTH 48 jpayne@69: jpayne@69: /* The maximum number of encrypt/decrypt pipelines we can support */ jpayne@69: # define SSL_MAX_PIPELINES 32 jpayne@69: jpayne@69: /* text strings for the ciphers */ jpayne@69: jpayne@69: /* These are used to specify which ciphers to use and not to use */ jpayne@69: jpayne@69: # define SSL_TXT_LOW "LOW" jpayne@69: # define SSL_TXT_MEDIUM "MEDIUM" jpayne@69: # define SSL_TXT_HIGH "HIGH" jpayne@69: # define SSL_TXT_FIPS "FIPS" jpayne@69: jpayne@69: # define SSL_TXT_aNULL "aNULL" jpayne@69: # define SSL_TXT_eNULL "eNULL" jpayne@69: # define SSL_TXT_NULL "NULL" jpayne@69: jpayne@69: # define SSL_TXT_kRSA "kRSA" jpayne@69: # define SSL_TXT_kDHr "kDHr"/* this cipher class has been removed */ jpayne@69: # define SSL_TXT_kDHd "kDHd"/* this cipher class has been removed */ jpayne@69: # define SSL_TXT_kDH "kDH"/* this cipher class has been removed */ jpayne@69: # define SSL_TXT_kEDH "kEDH"/* alias for kDHE */ jpayne@69: # define SSL_TXT_kDHE "kDHE" jpayne@69: # define SSL_TXT_kECDHr "kECDHr"/* this cipher class has been removed */ jpayne@69: # define SSL_TXT_kECDHe "kECDHe"/* this cipher class has been removed */ jpayne@69: # define SSL_TXT_kECDH "kECDH"/* this cipher class has been removed */ jpayne@69: # define SSL_TXT_kEECDH "kEECDH"/* alias for kECDHE */ jpayne@69: # define SSL_TXT_kECDHE "kECDHE" jpayne@69: # define SSL_TXT_kPSK "kPSK" jpayne@69: # define SSL_TXT_kRSAPSK "kRSAPSK" jpayne@69: # define SSL_TXT_kECDHEPSK "kECDHEPSK" jpayne@69: # define SSL_TXT_kDHEPSK "kDHEPSK" jpayne@69: # define SSL_TXT_kGOST "kGOST" jpayne@69: # define SSL_TXT_kSRP "kSRP" jpayne@69: jpayne@69: # define SSL_TXT_aRSA "aRSA" jpayne@69: # define SSL_TXT_aDSS "aDSS" jpayne@69: # define SSL_TXT_aDH "aDH"/* this cipher class has been removed */ jpayne@69: # define SSL_TXT_aECDH "aECDH"/* this cipher class has been removed */ jpayne@69: # define SSL_TXT_aECDSA "aECDSA" jpayne@69: # define SSL_TXT_aPSK "aPSK" jpayne@69: # define SSL_TXT_aGOST94 "aGOST94" jpayne@69: # define SSL_TXT_aGOST01 "aGOST01" jpayne@69: # define SSL_TXT_aGOST12 "aGOST12" jpayne@69: # define SSL_TXT_aGOST "aGOST" jpayne@69: # define SSL_TXT_aSRP "aSRP" jpayne@69: jpayne@69: # define SSL_TXT_DSS "DSS" jpayne@69: # define SSL_TXT_DH "DH" jpayne@69: # define SSL_TXT_DHE "DHE"/* same as "kDHE:-ADH" */ jpayne@69: # define SSL_TXT_EDH "EDH"/* alias for DHE */ jpayne@69: # define SSL_TXT_ADH "ADH" jpayne@69: # define SSL_TXT_RSA "RSA" jpayne@69: # define SSL_TXT_ECDH "ECDH" jpayne@69: # define SSL_TXT_EECDH "EECDH"/* alias for ECDHE" */ jpayne@69: # define SSL_TXT_ECDHE "ECDHE"/* same as "kECDHE:-AECDH" */ jpayne@69: # define SSL_TXT_AECDH "AECDH" jpayne@69: # define SSL_TXT_ECDSA "ECDSA" jpayne@69: # define SSL_TXT_PSK "PSK" jpayne@69: # define SSL_TXT_SRP "SRP" jpayne@69: jpayne@69: # define SSL_TXT_DES "DES" jpayne@69: # define SSL_TXT_3DES "3DES" jpayne@69: # define SSL_TXT_RC4 "RC4" jpayne@69: # define SSL_TXT_RC2 "RC2" jpayne@69: # define SSL_TXT_IDEA "IDEA" jpayne@69: # define SSL_TXT_SEED "SEED" jpayne@69: # define SSL_TXT_AES128 "AES128" jpayne@69: # define SSL_TXT_AES256 "AES256" jpayne@69: # define SSL_TXT_AES "AES" jpayne@69: # define SSL_TXT_AES_GCM "AESGCM" jpayne@69: # define SSL_TXT_AES_CCM "AESCCM" jpayne@69: # define SSL_TXT_AES_CCM_8 "AESCCM8" jpayne@69: # define SSL_TXT_CAMELLIA128 "CAMELLIA128" jpayne@69: # define SSL_TXT_CAMELLIA256 "CAMELLIA256" jpayne@69: # define SSL_TXT_CAMELLIA "CAMELLIA" jpayne@69: # define SSL_TXT_CHACHA20 "CHACHA20" jpayne@69: # define SSL_TXT_GOST "GOST89" jpayne@69: # define SSL_TXT_ARIA "ARIA" jpayne@69: # define SSL_TXT_ARIA_GCM "ARIAGCM" jpayne@69: # define SSL_TXT_ARIA128 "ARIA128" jpayne@69: # define SSL_TXT_ARIA256 "ARIA256" jpayne@69: jpayne@69: # define SSL_TXT_MD5 "MD5" jpayne@69: # define SSL_TXT_SHA1 "SHA1" jpayne@69: # define SSL_TXT_SHA "SHA"/* same as "SHA1" */ jpayne@69: # define SSL_TXT_GOST94 "GOST94" jpayne@69: # define SSL_TXT_GOST89MAC "GOST89MAC" jpayne@69: # define SSL_TXT_GOST12 "GOST12" jpayne@69: # define SSL_TXT_GOST89MAC12 "GOST89MAC12" jpayne@69: # define SSL_TXT_SHA256 "SHA256" jpayne@69: # define SSL_TXT_SHA384 "SHA384" jpayne@69: jpayne@69: # define SSL_TXT_SSLV3 "SSLv3" jpayne@69: # define SSL_TXT_TLSV1 "TLSv1" jpayne@69: # define SSL_TXT_TLSV1_1 "TLSv1.1" jpayne@69: # define SSL_TXT_TLSV1_2 "TLSv1.2" jpayne@69: jpayne@69: # define SSL_TXT_ALL "ALL" jpayne@69: jpayne@69: /*- jpayne@69: * COMPLEMENTOF* definitions. These identifiers are used to (de-select) jpayne@69: * ciphers normally not being used. jpayne@69: * Example: "RC4" will activate all ciphers using RC4 including ciphers jpayne@69: * without authentication, which would normally disabled by DEFAULT (due jpayne@69: * the "!ADH" being part of default). Therefore "RC4:!COMPLEMENTOFDEFAULT" jpayne@69: * will make sure that it is also disabled in the specific selection. jpayne@69: * COMPLEMENTOF* identifiers are portable between version, as adjustments jpayne@69: * to the default cipher setup will also be included here. jpayne@69: * jpayne@69: * COMPLEMENTOFDEFAULT does not experience the same special treatment that jpayne@69: * DEFAULT gets, as only selection is being done and no sorting as needed jpayne@69: * for DEFAULT. jpayne@69: */ jpayne@69: # define SSL_TXT_CMPALL "COMPLEMENTOFALL" jpayne@69: # define SSL_TXT_CMPDEF "COMPLEMENTOFDEFAULT" jpayne@69: jpayne@69: /* jpayne@69: * The following cipher list is used by default. It also is substituted when jpayne@69: * an application-defined cipher list string starts with 'DEFAULT'. jpayne@69: * This applies to ciphersuites for TLSv1.2 and below. jpayne@69: */ jpayne@69: # define SSL_DEFAULT_CIPHER_LIST "ALL:!COMPLEMENTOFDEFAULT:!eNULL" jpayne@69: /* This is the default set of TLSv1.3 ciphersuites */ jpayne@69: # if !defined(OPENSSL_NO_CHACHA) && !defined(OPENSSL_NO_POLY1305) jpayne@69: # define TLS_DEFAULT_CIPHERSUITES "TLS_AES_256_GCM_SHA384:" \ jpayne@69: "TLS_CHACHA20_POLY1305_SHA256:" \ jpayne@69: "TLS_AES_128_GCM_SHA256" jpayne@69: # else jpayne@69: # define TLS_DEFAULT_CIPHERSUITES "TLS_AES_256_GCM_SHA384:" \ jpayne@69: "TLS_AES_128_GCM_SHA256" jpayne@69: #endif jpayne@69: /* jpayne@69: * As of OpenSSL 1.0.0, ssl_create_cipher_list() in ssl/ssl_ciph.c always jpayne@69: * starts with a reasonable order, and all we have to do for DEFAULT is jpayne@69: * throwing out anonymous and unencrypted ciphersuites! (The latter are not jpayne@69: * actually enabled by ALL, but "ALL:RSA" would enable some of them.) jpayne@69: */ jpayne@69: jpayne@69: /* Used in SSL_set_shutdown()/SSL_get_shutdown(); */ jpayne@69: # define SSL_SENT_SHUTDOWN 1 jpayne@69: # define SSL_RECEIVED_SHUTDOWN 2 jpayne@69: jpayne@69: #ifdef __cplusplus jpayne@69: } jpayne@69: #endif jpayne@69: jpayne@69: #ifdef __cplusplus jpayne@69: extern "C" { jpayne@69: #endif jpayne@69: jpayne@69: # define SSL_FILETYPE_ASN1 X509_FILETYPE_ASN1 jpayne@69: # define SSL_FILETYPE_PEM X509_FILETYPE_PEM jpayne@69: jpayne@69: /* jpayne@69: * This is needed to stop compilers complaining about the 'struct ssl_st *' jpayne@69: * function parameters used to prototype callbacks in SSL_CTX. jpayne@69: */ jpayne@69: typedef struct ssl_st *ssl_crock_st; jpayne@69: typedef struct tls_session_ticket_ext_st TLS_SESSION_TICKET_EXT; jpayne@69: typedef struct ssl_method_st SSL_METHOD; jpayne@69: typedef struct ssl_cipher_st SSL_CIPHER; jpayne@69: typedef struct ssl_session_st SSL_SESSION; jpayne@69: typedef struct tls_sigalgs_st TLS_SIGALGS; jpayne@69: typedef struct ssl_conf_ctx_st SSL_CONF_CTX; jpayne@69: typedef struct ssl_comp_st SSL_COMP; jpayne@69: jpayne@69: STACK_OF(SSL_CIPHER); jpayne@69: STACK_OF(SSL_COMP); jpayne@69: jpayne@69: /* SRTP protection profiles for use with the use_srtp extension (RFC 5764)*/ jpayne@69: typedef struct srtp_protection_profile_st { jpayne@69: const char *name; jpayne@69: unsigned long id; jpayne@69: } SRTP_PROTECTION_PROFILE; jpayne@69: jpayne@69: DEFINE_STACK_OF(SRTP_PROTECTION_PROFILE) jpayne@69: jpayne@69: typedef int (*tls_session_ticket_ext_cb_fn)(SSL *s, const unsigned char *data, jpayne@69: int len, void *arg); jpayne@69: typedef int (*tls_session_secret_cb_fn)(SSL *s, void *secret, int *secret_len, jpayne@69: STACK_OF(SSL_CIPHER) *peer_ciphers, jpayne@69: const SSL_CIPHER **cipher, void *arg); jpayne@69: jpayne@69: /* Extension context codes */ jpayne@69: /* This extension is only allowed in TLS */ jpayne@69: #define SSL_EXT_TLS_ONLY 0x0001 jpayne@69: /* This extension is only allowed in DTLS */ jpayne@69: #define SSL_EXT_DTLS_ONLY 0x0002 jpayne@69: /* Some extensions may be allowed in DTLS but we don't implement them for it */ jpayne@69: #define SSL_EXT_TLS_IMPLEMENTATION_ONLY 0x0004 jpayne@69: /* Most extensions are not defined for SSLv3 but EXT_TYPE_renegotiate is */ jpayne@69: #define SSL_EXT_SSL3_ALLOWED 0x0008 jpayne@69: /* Extension is only defined for TLS1.2 and below */ jpayne@69: #define SSL_EXT_TLS1_2_AND_BELOW_ONLY 0x0010 jpayne@69: /* Extension is only defined for TLS1.3 and above */ jpayne@69: #define SSL_EXT_TLS1_3_ONLY 0x0020 jpayne@69: /* Ignore this extension during parsing if we are resuming */ jpayne@69: #define SSL_EXT_IGNORE_ON_RESUMPTION 0x0040 jpayne@69: #define SSL_EXT_CLIENT_HELLO 0x0080 jpayne@69: /* Really means TLS1.2 or below */ jpayne@69: #define SSL_EXT_TLS1_2_SERVER_HELLO 0x0100 jpayne@69: #define SSL_EXT_TLS1_3_SERVER_HELLO 0x0200 jpayne@69: #define SSL_EXT_TLS1_3_ENCRYPTED_EXTENSIONS 0x0400 jpayne@69: #define SSL_EXT_TLS1_3_HELLO_RETRY_REQUEST 0x0800 jpayne@69: #define SSL_EXT_TLS1_3_CERTIFICATE 0x1000 jpayne@69: #define SSL_EXT_TLS1_3_NEW_SESSION_TICKET 0x2000 jpayne@69: #define SSL_EXT_TLS1_3_CERTIFICATE_REQUEST 0x4000 jpayne@69: jpayne@69: /* Typedefs for handling custom extensions */ jpayne@69: jpayne@69: typedef int (*custom_ext_add_cb)(SSL *s, unsigned int ext_type, jpayne@69: const unsigned char **out, size_t *outlen, jpayne@69: int *al, void *add_arg); jpayne@69: jpayne@69: typedef void (*custom_ext_free_cb)(SSL *s, unsigned int ext_type, jpayne@69: const unsigned char *out, void *add_arg); jpayne@69: jpayne@69: typedef int (*custom_ext_parse_cb)(SSL *s, unsigned int ext_type, jpayne@69: const unsigned char *in, size_t inlen, jpayne@69: int *al, void *parse_arg); jpayne@69: jpayne@69: jpayne@69: typedef int (*SSL_custom_ext_add_cb_ex)(SSL *s, unsigned int ext_type, jpayne@69: unsigned int context, jpayne@69: const unsigned char **out, jpayne@69: size_t *outlen, X509 *x, jpayne@69: size_t chainidx, jpayne@69: int *al, void *add_arg); jpayne@69: jpayne@69: typedef void (*SSL_custom_ext_free_cb_ex)(SSL *s, unsigned int ext_type, jpayne@69: unsigned int context, jpayne@69: const unsigned char *out, jpayne@69: void *add_arg); jpayne@69: jpayne@69: typedef int (*SSL_custom_ext_parse_cb_ex)(SSL *s, unsigned int ext_type, jpayne@69: unsigned int context, jpayne@69: const unsigned char *in, jpayne@69: size_t inlen, X509 *x, jpayne@69: size_t chainidx, jpayne@69: int *al, void *parse_arg); jpayne@69: jpayne@69: /* Typedef for verification callback */ jpayne@69: typedef int (*SSL_verify_cb)(int preverify_ok, X509_STORE_CTX *x509_ctx); jpayne@69: jpayne@69: /* jpayne@69: * Some values are reserved until OpenSSL 1.2.0 because they were previously jpayne@69: * included in SSL_OP_ALL in a 1.1.x release. jpayne@69: * jpayne@69: * Reserved value (until OpenSSL 1.2.0) 0x00000001U jpayne@69: * Reserved value (until OpenSSL 1.2.0) 0x00000002U jpayne@69: */ jpayne@69: /* Allow initial connection to servers that don't support RI */ jpayne@69: # define SSL_OP_LEGACY_SERVER_CONNECT 0x00000004U jpayne@69: jpayne@69: /* Reserved value (until OpenSSL 1.2.0) 0x00000008U */ jpayne@69: # define SSL_OP_TLSEXT_PADDING 0x00000010U jpayne@69: /* Reserved value (until OpenSSL 1.2.0) 0x00000020U */ jpayne@69: # define SSL_OP_SAFARI_ECDHE_ECDSA_BUG 0x00000040U jpayne@69: /* jpayne@69: * Reserved value (until OpenSSL 1.2.0) 0x00000080U jpayne@69: * Reserved value (until OpenSSL 1.2.0) 0x00000100U jpayne@69: * Reserved value (until OpenSSL 1.2.0) 0x00000200U jpayne@69: */ jpayne@69: jpayne@69: /* In TLSv1.3 allow a non-(ec)dhe based kex_mode */ jpayne@69: # define SSL_OP_ALLOW_NO_DHE_KEX 0x00000400U jpayne@69: jpayne@69: /* jpayne@69: * Disable SSL 3.0/TLS 1.0 CBC vulnerability workaround that was added in jpayne@69: * OpenSSL 0.9.6d. Usually (depending on the application protocol) the jpayne@69: * workaround is not needed. Unfortunately some broken SSL/TLS jpayne@69: * implementations cannot handle it at all, which is why we include it in jpayne@69: * SSL_OP_ALL. Added in 0.9.6e jpayne@69: */ jpayne@69: # define SSL_OP_DONT_INSERT_EMPTY_FRAGMENTS 0x00000800U jpayne@69: jpayne@69: /* DTLS options */ jpayne@69: # define SSL_OP_NO_QUERY_MTU 0x00001000U jpayne@69: /* Turn on Cookie Exchange (on relevant for servers) */ jpayne@69: # define SSL_OP_COOKIE_EXCHANGE 0x00002000U jpayne@69: /* Don't use RFC4507 ticket extension */ jpayne@69: # define SSL_OP_NO_TICKET 0x00004000U jpayne@69: # ifndef OPENSSL_NO_DTLS1_METHOD jpayne@69: /* Use Cisco's "speshul" version of DTLS_BAD_VER jpayne@69: * (only with deprecated DTLSv1_client_method()) */ jpayne@69: # define SSL_OP_CISCO_ANYCONNECT 0x00008000U jpayne@69: # endif jpayne@69: jpayne@69: /* As server, disallow session resumption on renegotiation */ jpayne@69: # define SSL_OP_NO_SESSION_RESUMPTION_ON_RENEGOTIATION 0x00010000U jpayne@69: /* Don't use compression even if supported */ jpayne@69: # define SSL_OP_NO_COMPRESSION 0x00020000U jpayne@69: /* Permit unsafe legacy renegotiation */ jpayne@69: # define SSL_OP_ALLOW_UNSAFE_LEGACY_RENEGOTIATION 0x00040000U jpayne@69: /* Disable encrypt-then-mac */ jpayne@69: # define SSL_OP_NO_ENCRYPT_THEN_MAC 0x00080000U jpayne@69: jpayne@69: /* jpayne@69: * Enable TLSv1.3 Compatibility mode. This is on by default. A future version jpayne@69: * of OpenSSL may have this disabled by default. jpayne@69: */ jpayne@69: # define SSL_OP_ENABLE_MIDDLEBOX_COMPAT 0x00100000U jpayne@69: jpayne@69: /* Prioritize Chacha20Poly1305 when client does. jpayne@69: * Modifies SSL_OP_CIPHER_SERVER_PREFERENCE */ jpayne@69: # define SSL_OP_PRIORITIZE_CHACHA 0x00200000U jpayne@69: jpayne@69: /* jpayne@69: * Set on servers to choose the cipher according to the server's preferences jpayne@69: */ jpayne@69: # define SSL_OP_CIPHER_SERVER_PREFERENCE 0x00400000U jpayne@69: /* jpayne@69: * If set, a server will allow a client to issue a SSLv3.0 version number as jpayne@69: * latest version supported in the premaster secret, even when TLSv1.0 jpayne@69: * (version 3.1) was announced in the client hello. Normally this is jpayne@69: * forbidden to prevent version rollback attacks. jpayne@69: */ jpayne@69: # define SSL_OP_TLS_ROLLBACK_BUG 0x00800000U jpayne@69: jpayne@69: /* jpayne@69: * Switches off automatic TLSv1.3 anti-replay protection for early data. This jpayne@69: * is a server-side option only (no effect on the client). jpayne@69: */ jpayne@69: # define SSL_OP_NO_ANTI_REPLAY 0x01000000U jpayne@69: jpayne@69: # define SSL_OP_NO_SSLv3 0x02000000U jpayne@69: # define SSL_OP_NO_TLSv1 0x04000000U jpayne@69: # define SSL_OP_NO_TLSv1_2 0x08000000U jpayne@69: # define SSL_OP_NO_TLSv1_1 0x10000000U jpayne@69: # define SSL_OP_NO_TLSv1_3 0x20000000U jpayne@69: jpayne@69: # define SSL_OP_NO_DTLSv1 0x04000000U jpayne@69: # define SSL_OP_NO_DTLSv1_2 0x08000000U jpayne@69: jpayne@69: # define SSL_OP_NO_SSL_MASK (SSL_OP_NO_SSLv3|\ jpayne@69: SSL_OP_NO_TLSv1|SSL_OP_NO_TLSv1_1|SSL_OP_NO_TLSv1_2|SSL_OP_NO_TLSv1_3) jpayne@69: # define SSL_OP_NO_DTLS_MASK (SSL_OP_NO_DTLSv1|SSL_OP_NO_DTLSv1_2) jpayne@69: jpayne@69: /* Disallow all renegotiation */ jpayne@69: # define SSL_OP_NO_RENEGOTIATION 0x40000000U jpayne@69: jpayne@69: /* jpayne@69: * Make server add server-hello extension from early version of cryptopro jpayne@69: * draft, when GOST ciphersuite is negotiated. Required for interoperability jpayne@69: * with CryptoPro CSP 3.x jpayne@69: */ jpayne@69: # define SSL_OP_CRYPTOPRO_TLSEXT_BUG 0x80000000U jpayne@69: jpayne@69: /* jpayne@69: * SSL_OP_ALL: various bug workarounds that should be rather harmless. jpayne@69: * This used to be 0x000FFFFFL before 0.9.7. jpayne@69: * This used to be 0x80000BFFU before 1.1.1. jpayne@69: */ jpayne@69: # define SSL_OP_ALL (SSL_OP_CRYPTOPRO_TLSEXT_BUG|\ jpayne@69: SSL_OP_DONT_INSERT_EMPTY_FRAGMENTS|\ jpayne@69: SSL_OP_LEGACY_SERVER_CONNECT|\ jpayne@69: SSL_OP_TLSEXT_PADDING|\ jpayne@69: SSL_OP_SAFARI_ECDHE_ECDSA_BUG) jpayne@69: jpayne@69: /* OBSOLETE OPTIONS: retained for compatibility */ jpayne@69: jpayne@69: /* Removed from OpenSSL 1.1.0. Was 0x00000001L */ jpayne@69: /* Related to removed SSLv2. */ jpayne@69: # define SSL_OP_MICROSOFT_SESS_ID_BUG 0x0 jpayne@69: /* Removed from OpenSSL 1.1.0. Was 0x00000002L */ jpayne@69: /* Related to removed SSLv2. */ jpayne@69: # define SSL_OP_NETSCAPE_CHALLENGE_BUG 0x0 jpayne@69: /* Removed from OpenSSL 0.9.8q and 1.0.0c. Was 0x00000008L */ jpayne@69: /* Dead forever, see CVE-2010-4180 */ jpayne@69: # define SSL_OP_NETSCAPE_REUSE_CIPHER_CHANGE_BUG 0x0 jpayne@69: /* Removed from OpenSSL 1.0.1h and 1.0.2. Was 0x00000010L */ jpayne@69: /* Refers to ancient SSLREF and SSLv2. */ jpayne@69: # define SSL_OP_SSLREF2_REUSE_CERT_TYPE_BUG 0x0 jpayne@69: /* Removed from OpenSSL 1.1.0. Was 0x00000020 */ jpayne@69: # define SSL_OP_MICROSOFT_BIG_SSLV3_BUFFER 0x0 jpayne@69: /* Removed from OpenSSL 0.9.7h and 0.9.8b. Was 0x00000040L */ jpayne@69: # define SSL_OP_MSIE_SSLV2_RSA_PADDING 0x0 jpayne@69: /* Removed from OpenSSL 1.1.0. Was 0x00000080 */ jpayne@69: /* Ancient SSLeay version. */ jpayne@69: # define SSL_OP_SSLEAY_080_CLIENT_DH_BUG 0x0 jpayne@69: /* Removed from OpenSSL 1.1.0. Was 0x00000100L */ jpayne@69: # define SSL_OP_TLS_D5_BUG 0x0 jpayne@69: /* Removed from OpenSSL 1.1.0. Was 0x00000200L */ jpayne@69: # define SSL_OP_TLS_BLOCK_PADDING_BUG 0x0 jpayne@69: /* Removed from OpenSSL 1.1.0. Was 0x00080000L */ jpayne@69: # define SSL_OP_SINGLE_ECDH_USE 0x0 jpayne@69: /* Removed from OpenSSL 1.1.0. Was 0x00100000L */ jpayne@69: # define SSL_OP_SINGLE_DH_USE 0x0 jpayne@69: /* Removed from OpenSSL 1.0.1k and 1.0.2. Was 0x00200000L */ jpayne@69: # define SSL_OP_EPHEMERAL_RSA 0x0 jpayne@69: /* Removed from OpenSSL 1.1.0. Was 0x01000000L */ jpayne@69: # define SSL_OP_NO_SSLv2 0x0 jpayne@69: /* Removed from OpenSSL 1.0.1. Was 0x08000000L */ jpayne@69: # define SSL_OP_PKCS1_CHECK_1 0x0 jpayne@69: /* Removed from OpenSSL 1.0.1. Was 0x10000000L */ jpayne@69: # define SSL_OP_PKCS1_CHECK_2 0x0 jpayne@69: /* Removed from OpenSSL 1.1.0. Was 0x20000000L */ jpayne@69: # define SSL_OP_NETSCAPE_CA_DN_BUG 0x0 jpayne@69: /* Removed from OpenSSL 1.1.0. Was 0x40000000L */ jpayne@69: # define SSL_OP_NETSCAPE_DEMO_CIPHER_CHANGE_BUG 0x0 jpayne@69: jpayne@69: /* jpayne@69: * Allow SSL_write(..., n) to return r with 0 < r < n (i.e. report success jpayne@69: * when just a single record has been written): jpayne@69: */ jpayne@69: # define SSL_MODE_ENABLE_PARTIAL_WRITE 0x00000001U jpayne@69: /* jpayne@69: * Make it possible to retry SSL_write() with changed buffer location (buffer jpayne@69: * contents must stay the same!); this is not the default to avoid the jpayne@69: * misconception that non-blocking SSL_write() behaves like non-blocking jpayne@69: * write(): jpayne@69: */ jpayne@69: # define SSL_MODE_ACCEPT_MOVING_WRITE_BUFFER 0x00000002U jpayne@69: /* jpayne@69: * Never bother the application with retries if the transport is blocking: jpayne@69: */ jpayne@69: # define SSL_MODE_AUTO_RETRY 0x00000004U jpayne@69: /* Don't attempt to automatically build certificate chain */ jpayne@69: # define SSL_MODE_NO_AUTO_CHAIN 0x00000008U jpayne@69: /* jpayne@69: * Save RAM by releasing read and write buffers when they're empty. (SSL3 and jpayne@69: * TLS only.) Released buffers are freed. jpayne@69: */ jpayne@69: # define SSL_MODE_RELEASE_BUFFERS 0x00000010U jpayne@69: /* jpayne@69: * Send the current time in the Random fields of the ClientHello and jpayne@69: * ServerHello records for compatibility with hypothetical implementations jpayne@69: * that require it. jpayne@69: */ jpayne@69: # define SSL_MODE_SEND_CLIENTHELLO_TIME 0x00000020U jpayne@69: # define SSL_MODE_SEND_SERVERHELLO_TIME 0x00000040U jpayne@69: /* jpayne@69: * Send TLS_FALLBACK_SCSV in the ClientHello. To be set only by applications jpayne@69: * that reconnect with a downgraded protocol version; see jpayne@69: * draft-ietf-tls-downgrade-scsv-00 for details. DO NOT ENABLE THIS if your jpayne@69: * application attempts a normal handshake. Only use this in explicit jpayne@69: * fallback retries, following the guidance in jpayne@69: * draft-ietf-tls-downgrade-scsv-00. jpayne@69: */ jpayne@69: # define SSL_MODE_SEND_FALLBACK_SCSV 0x00000080U jpayne@69: /* jpayne@69: * Support Asynchronous operation jpayne@69: */ jpayne@69: # define SSL_MODE_ASYNC 0x00000100U jpayne@69: jpayne@69: /* jpayne@69: * When using DTLS/SCTP, include the terminating zero in the label jpayne@69: * used for computing the endpoint-pair shared secret. Required for jpayne@69: * interoperability with implementations having this bug like these jpayne@69: * older version of OpenSSL: jpayne@69: * - OpenSSL 1.0.0 series jpayne@69: * - OpenSSL 1.0.1 series jpayne@69: * - OpenSSL 1.0.2 series jpayne@69: * - OpenSSL 1.1.0 series jpayne@69: * - OpenSSL 1.1.1 and 1.1.1a jpayne@69: */ jpayne@69: # define SSL_MODE_DTLS_SCTP_LABEL_LENGTH_BUG 0x00000400U jpayne@69: jpayne@69: /* Cert related flags */ jpayne@69: /* jpayne@69: * Many implementations ignore some aspects of the TLS standards such as jpayne@69: * enforcing certificate chain algorithms. When this is set we enforce them. jpayne@69: */ jpayne@69: # define SSL_CERT_FLAG_TLS_STRICT 0x00000001U jpayne@69: jpayne@69: /* Suite B modes, takes same values as certificate verify flags */ jpayne@69: # define SSL_CERT_FLAG_SUITEB_128_LOS_ONLY 0x10000 jpayne@69: /* Suite B 192 bit only mode */ jpayne@69: # define SSL_CERT_FLAG_SUITEB_192_LOS 0x20000 jpayne@69: /* Suite B 128 bit mode allowing 192 bit algorithms */ jpayne@69: # define SSL_CERT_FLAG_SUITEB_128_LOS 0x30000 jpayne@69: jpayne@69: /* Perform all sorts of protocol violations for testing purposes */ jpayne@69: # define SSL_CERT_FLAG_BROKEN_PROTOCOL 0x10000000 jpayne@69: jpayne@69: /* Flags for building certificate chains */ jpayne@69: /* Treat any existing certificates as untrusted CAs */ jpayne@69: # define SSL_BUILD_CHAIN_FLAG_UNTRUSTED 0x1 jpayne@69: /* Don't include root CA in chain */ jpayne@69: # define SSL_BUILD_CHAIN_FLAG_NO_ROOT 0x2 jpayne@69: /* Just check certificates already there */ jpayne@69: # define SSL_BUILD_CHAIN_FLAG_CHECK 0x4 jpayne@69: /* Ignore verification errors */ jpayne@69: # define SSL_BUILD_CHAIN_FLAG_IGNORE_ERROR 0x8 jpayne@69: /* Clear verification errors from queue */ jpayne@69: # define SSL_BUILD_CHAIN_FLAG_CLEAR_ERROR 0x10 jpayne@69: jpayne@69: /* Flags returned by SSL_check_chain */ jpayne@69: /* Certificate can be used with this session */ jpayne@69: # define CERT_PKEY_VALID 0x1 jpayne@69: /* Certificate can also be used for signing */ jpayne@69: # define CERT_PKEY_SIGN 0x2 jpayne@69: /* EE certificate signing algorithm OK */ jpayne@69: # define CERT_PKEY_EE_SIGNATURE 0x10 jpayne@69: /* CA signature algorithms OK */ jpayne@69: # define CERT_PKEY_CA_SIGNATURE 0x20 jpayne@69: /* EE certificate parameters OK */ jpayne@69: # define CERT_PKEY_EE_PARAM 0x40 jpayne@69: /* CA certificate parameters OK */ jpayne@69: # define CERT_PKEY_CA_PARAM 0x80 jpayne@69: /* Signing explicitly allowed as opposed to SHA1 fallback */ jpayne@69: # define CERT_PKEY_EXPLICIT_SIGN 0x100 jpayne@69: /* Client CA issuer names match (always set for server cert) */ jpayne@69: # define CERT_PKEY_ISSUER_NAME 0x200 jpayne@69: /* Cert type matches client types (always set for server cert) */ jpayne@69: # define CERT_PKEY_CERT_TYPE 0x400 jpayne@69: /* Cert chain suitable to Suite B */ jpayne@69: # define CERT_PKEY_SUITEB 0x800 jpayne@69: jpayne@69: # define SSL_CONF_FLAG_CMDLINE 0x1 jpayne@69: # define SSL_CONF_FLAG_FILE 0x2 jpayne@69: # define SSL_CONF_FLAG_CLIENT 0x4 jpayne@69: # define SSL_CONF_FLAG_SERVER 0x8 jpayne@69: # define SSL_CONF_FLAG_SHOW_ERRORS 0x10 jpayne@69: # define SSL_CONF_FLAG_CERTIFICATE 0x20 jpayne@69: # define SSL_CONF_FLAG_REQUIRE_PRIVATE 0x40 jpayne@69: /* Configuration value types */ jpayne@69: # define SSL_CONF_TYPE_UNKNOWN 0x0 jpayne@69: # define SSL_CONF_TYPE_STRING 0x1 jpayne@69: # define SSL_CONF_TYPE_FILE 0x2 jpayne@69: # define SSL_CONF_TYPE_DIR 0x3 jpayne@69: # define SSL_CONF_TYPE_NONE 0x4 jpayne@69: jpayne@69: /* Maximum length of the application-controlled segment of a a TLSv1.3 cookie */ jpayne@69: # define SSL_COOKIE_LENGTH 4096 jpayne@69: jpayne@69: /* jpayne@69: * Note: SSL[_CTX]_set_{options,mode} use |= op on the previous value, they jpayne@69: * cannot be used to clear bits. jpayne@69: */ jpayne@69: jpayne@69: unsigned long SSL_CTX_get_options(const SSL_CTX *ctx); jpayne@69: unsigned long SSL_get_options(const SSL *s); jpayne@69: unsigned long SSL_CTX_clear_options(SSL_CTX *ctx, unsigned long op); jpayne@69: unsigned long SSL_clear_options(SSL *s, unsigned long op); jpayne@69: unsigned long SSL_CTX_set_options(SSL_CTX *ctx, unsigned long op); jpayne@69: unsigned long SSL_set_options(SSL *s, unsigned long op); jpayne@69: jpayne@69: # define SSL_CTX_set_mode(ctx,op) \ jpayne@69: SSL_CTX_ctrl((ctx),SSL_CTRL_MODE,(op),NULL) jpayne@69: # define SSL_CTX_clear_mode(ctx,op) \ jpayne@69: SSL_CTX_ctrl((ctx),SSL_CTRL_CLEAR_MODE,(op),NULL) jpayne@69: # define SSL_CTX_get_mode(ctx) \ jpayne@69: SSL_CTX_ctrl((ctx),SSL_CTRL_MODE,0,NULL) jpayne@69: # define SSL_clear_mode(ssl,op) \ jpayne@69: SSL_ctrl((ssl),SSL_CTRL_CLEAR_MODE,(op),NULL) jpayne@69: # define SSL_set_mode(ssl,op) \ jpayne@69: SSL_ctrl((ssl),SSL_CTRL_MODE,(op),NULL) jpayne@69: # define SSL_get_mode(ssl) \ jpayne@69: SSL_ctrl((ssl),SSL_CTRL_MODE,0,NULL) jpayne@69: # define SSL_set_mtu(ssl, mtu) \ jpayne@69: SSL_ctrl((ssl),SSL_CTRL_SET_MTU,(mtu),NULL) jpayne@69: # define DTLS_set_link_mtu(ssl, mtu) \ jpayne@69: SSL_ctrl((ssl),DTLS_CTRL_SET_LINK_MTU,(mtu),NULL) jpayne@69: # define DTLS_get_link_min_mtu(ssl) \ jpayne@69: SSL_ctrl((ssl),DTLS_CTRL_GET_LINK_MIN_MTU,0,NULL) jpayne@69: jpayne@69: # define SSL_get_secure_renegotiation_support(ssl) \ jpayne@69: SSL_ctrl((ssl), SSL_CTRL_GET_RI_SUPPORT, 0, NULL) jpayne@69: jpayne@69: # ifndef OPENSSL_NO_HEARTBEATS jpayne@69: # define SSL_heartbeat(ssl) \ jpayne@69: SSL_ctrl((ssl),SSL_CTRL_DTLS_EXT_SEND_HEARTBEAT,0,NULL) jpayne@69: # endif jpayne@69: jpayne@69: # define SSL_CTX_set_cert_flags(ctx,op) \ jpayne@69: SSL_CTX_ctrl((ctx),SSL_CTRL_CERT_FLAGS,(op),NULL) jpayne@69: # define SSL_set_cert_flags(s,op) \ jpayne@69: SSL_ctrl((s),SSL_CTRL_CERT_FLAGS,(op),NULL) jpayne@69: # define SSL_CTX_clear_cert_flags(ctx,op) \ jpayne@69: SSL_CTX_ctrl((ctx),SSL_CTRL_CLEAR_CERT_FLAGS,(op),NULL) jpayne@69: # define SSL_clear_cert_flags(s,op) \ jpayne@69: SSL_ctrl((s),SSL_CTRL_CLEAR_CERT_FLAGS,(op),NULL) jpayne@69: jpayne@69: void SSL_CTX_set_msg_callback(SSL_CTX *ctx, jpayne@69: void (*cb) (int write_p, int version, jpayne@69: int content_type, const void *buf, jpayne@69: size_t len, SSL *ssl, void *arg)); jpayne@69: void SSL_set_msg_callback(SSL *ssl, jpayne@69: void (*cb) (int write_p, int version, jpayne@69: int content_type, const void *buf, jpayne@69: size_t len, SSL *ssl, void *arg)); jpayne@69: # define SSL_CTX_set_msg_callback_arg(ctx, arg) SSL_CTX_ctrl((ctx), SSL_CTRL_SET_MSG_CALLBACK_ARG, 0, (arg)) jpayne@69: # define SSL_set_msg_callback_arg(ssl, arg) SSL_ctrl((ssl), SSL_CTRL_SET_MSG_CALLBACK_ARG, 0, (arg)) jpayne@69: jpayne@69: # define SSL_get_extms_support(s) \ jpayne@69: SSL_ctrl((s),SSL_CTRL_GET_EXTMS_SUPPORT,0,NULL) jpayne@69: jpayne@69: # ifndef OPENSSL_NO_SRP jpayne@69: jpayne@69: /* see tls_srp.c */ jpayne@69: __owur int SSL_SRP_CTX_init(SSL *s); jpayne@69: __owur int SSL_CTX_SRP_CTX_init(SSL_CTX *ctx); jpayne@69: int SSL_SRP_CTX_free(SSL *ctx); jpayne@69: int SSL_CTX_SRP_CTX_free(SSL_CTX *ctx); jpayne@69: __owur int SSL_srp_server_param_with_username(SSL *s, int *ad); jpayne@69: __owur int SRP_Calc_A_param(SSL *s); jpayne@69: jpayne@69: # endif jpayne@69: jpayne@69: /* 100k max cert list */ jpayne@69: # define SSL_MAX_CERT_LIST_DEFAULT 1024*100 jpayne@69: jpayne@69: # define SSL_SESSION_CACHE_MAX_SIZE_DEFAULT (1024*20) jpayne@69: jpayne@69: /* jpayne@69: * This callback type is used inside SSL_CTX, SSL, and in the functions that jpayne@69: * set them. It is used to override the generation of SSL/TLS session IDs in jpayne@69: * a server. Return value should be zero on an error, non-zero to proceed. jpayne@69: * Also, callbacks should themselves check if the id they generate is unique jpayne@69: * otherwise the SSL handshake will fail with an error - callbacks can do jpayne@69: * this using the 'ssl' value they're passed by; jpayne@69: * SSL_has_matching_session_id(ssl, id, *id_len) The length value passed in jpayne@69: * is set at the maximum size the session ID can be. In SSLv3/TLSv1 it is 32 jpayne@69: * bytes. The callback can alter this length to be less if desired. It is jpayne@69: * also an error for the callback to set the size to zero. jpayne@69: */ jpayne@69: typedef int (*GEN_SESSION_CB) (SSL *ssl, unsigned char *id, jpayne@69: unsigned int *id_len); jpayne@69: jpayne@69: # define SSL_SESS_CACHE_OFF 0x0000 jpayne@69: # define SSL_SESS_CACHE_CLIENT 0x0001 jpayne@69: # define SSL_SESS_CACHE_SERVER 0x0002 jpayne@69: # define SSL_SESS_CACHE_BOTH (SSL_SESS_CACHE_CLIENT|SSL_SESS_CACHE_SERVER) jpayne@69: # define SSL_SESS_CACHE_NO_AUTO_CLEAR 0x0080 jpayne@69: /* enough comments already ... see SSL_CTX_set_session_cache_mode(3) */ jpayne@69: # define SSL_SESS_CACHE_NO_INTERNAL_LOOKUP 0x0100 jpayne@69: # define SSL_SESS_CACHE_NO_INTERNAL_STORE 0x0200 jpayne@69: # define SSL_SESS_CACHE_NO_INTERNAL \ jpayne@69: (SSL_SESS_CACHE_NO_INTERNAL_LOOKUP|SSL_SESS_CACHE_NO_INTERNAL_STORE) jpayne@69: jpayne@69: LHASH_OF(SSL_SESSION) *SSL_CTX_sessions(SSL_CTX *ctx); jpayne@69: # define SSL_CTX_sess_number(ctx) \ jpayne@69: SSL_CTX_ctrl(ctx,SSL_CTRL_SESS_NUMBER,0,NULL) jpayne@69: # define SSL_CTX_sess_connect(ctx) \ jpayne@69: SSL_CTX_ctrl(ctx,SSL_CTRL_SESS_CONNECT,0,NULL) jpayne@69: # define SSL_CTX_sess_connect_good(ctx) \ jpayne@69: SSL_CTX_ctrl(ctx,SSL_CTRL_SESS_CONNECT_GOOD,0,NULL) jpayne@69: # define SSL_CTX_sess_connect_renegotiate(ctx) \ jpayne@69: SSL_CTX_ctrl(ctx,SSL_CTRL_SESS_CONNECT_RENEGOTIATE,0,NULL) jpayne@69: # define SSL_CTX_sess_accept(ctx) \ jpayne@69: SSL_CTX_ctrl(ctx,SSL_CTRL_SESS_ACCEPT,0,NULL) jpayne@69: # define SSL_CTX_sess_accept_renegotiate(ctx) \ jpayne@69: SSL_CTX_ctrl(ctx,SSL_CTRL_SESS_ACCEPT_RENEGOTIATE,0,NULL) jpayne@69: # define SSL_CTX_sess_accept_good(ctx) \ jpayne@69: SSL_CTX_ctrl(ctx,SSL_CTRL_SESS_ACCEPT_GOOD,0,NULL) jpayne@69: # define SSL_CTX_sess_hits(ctx) \ jpayne@69: SSL_CTX_ctrl(ctx,SSL_CTRL_SESS_HIT,0,NULL) jpayne@69: # define SSL_CTX_sess_cb_hits(ctx) \ jpayne@69: SSL_CTX_ctrl(ctx,SSL_CTRL_SESS_CB_HIT,0,NULL) jpayne@69: # define SSL_CTX_sess_misses(ctx) \ jpayne@69: SSL_CTX_ctrl(ctx,SSL_CTRL_SESS_MISSES,0,NULL) jpayne@69: # define SSL_CTX_sess_timeouts(ctx) \ jpayne@69: SSL_CTX_ctrl(ctx,SSL_CTRL_SESS_TIMEOUTS,0,NULL) jpayne@69: # define SSL_CTX_sess_cache_full(ctx) \ jpayne@69: SSL_CTX_ctrl(ctx,SSL_CTRL_SESS_CACHE_FULL,0,NULL) jpayne@69: jpayne@69: void SSL_CTX_sess_set_new_cb(SSL_CTX *ctx, jpayne@69: int (*new_session_cb) (struct ssl_st *ssl, jpayne@69: SSL_SESSION *sess)); jpayne@69: int (*SSL_CTX_sess_get_new_cb(SSL_CTX *ctx)) (struct ssl_st *ssl, jpayne@69: SSL_SESSION *sess); jpayne@69: void SSL_CTX_sess_set_remove_cb(SSL_CTX *ctx, jpayne@69: void (*remove_session_cb) (struct ssl_ctx_st jpayne@69: *ctx, jpayne@69: SSL_SESSION *sess)); jpayne@69: void (*SSL_CTX_sess_get_remove_cb(SSL_CTX *ctx)) (struct ssl_ctx_st *ctx, jpayne@69: SSL_SESSION *sess); jpayne@69: void SSL_CTX_sess_set_get_cb(SSL_CTX *ctx, jpayne@69: SSL_SESSION *(*get_session_cb) (struct ssl_st jpayne@69: *ssl, jpayne@69: const unsigned char jpayne@69: *data, int len, jpayne@69: int *copy)); jpayne@69: SSL_SESSION *(*SSL_CTX_sess_get_get_cb(SSL_CTX *ctx)) (struct ssl_st *ssl, jpayne@69: const unsigned char *data, jpayne@69: int len, int *copy); jpayne@69: void SSL_CTX_set_info_callback(SSL_CTX *ctx, jpayne@69: void (*cb) (const SSL *ssl, int type, int val)); jpayne@69: void (*SSL_CTX_get_info_callback(SSL_CTX *ctx)) (const SSL *ssl, int type, jpayne@69: int val); jpayne@69: void SSL_CTX_set_client_cert_cb(SSL_CTX *ctx, jpayne@69: int (*client_cert_cb) (SSL *ssl, X509 **x509, jpayne@69: EVP_PKEY **pkey)); jpayne@69: int (*SSL_CTX_get_client_cert_cb(SSL_CTX *ctx)) (SSL *ssl, X509 **x509, jpayne@69: EVP_PKEY **pkey); jpayne@69: # ifndef OPENSSL_NO_ENGINE jpayne@69: __owur int SSL_CTX_set_client_cert_engine(SSL_CTX *ctx, ENGINE *e); jpayne@69: # endif jpayne@69: void SSL_CTX_set_cookie_generate_cb(SSL_CTX *ctx, jpayne@69: int (*app_gen_cookie_cb) (SSL *ssl, jpayne@69: unsigned char jpayne@69: *cookie, jpayne@69: unsigned int jpayne@69: *cookie_len)); jpayne@69: void SSL_CTX_set_cookie_verify_cb(SSL_CTX *ctx, jpayne@69: int (*app_verify_cookie_cb) (SSL *ssl, jpayne@69: const unsigned jpayne@69: char *cookie, jpayne@69: unsigned int jpayne@69: cookie_len)); jpayne@69: jpayne@69: void SSL_CTX_set_stateless_cookie_generate_cb( jpayne@69: SSL_CTX *ctx, jpayne@69: int (*gen_stateless_cookie_cb) (SSL *ssl, jpayne@69: unsigned char *cookie, jpayne@69: size_t *cookie_len)); jpayne@69: void SSL_CTX_set_stateless_cookie_verify_cb( jpayne@69: SSL_CTX *ctx, jpayne@69: int (*verify_stateless_cookie_cb) (SSL *ssl, jpayne@69: const unsigned char *cookie, jpayne@69: size_t cookie_len)); jpayne@69: # ifndef OPENSSL_NO_NEXTPROTONEG jpayne@69: jpayne@69: typedef int (*SSL_CTX_npn_advertised_cb_func)(SSL *ssl, jpayne@69: const unsigned char **out, jpayne@69: unsigned int *outlen, jpayne@69: void *arg); jpayne@69: void SSL_CTX_set_next_protos_advertised_cb(SSL_CTX *s, jpayne@69: SSL_CTX_npn_advertised_cb_func cb, jpayne@69: void *arg); jpayne@69: # define SSL_CTX_set_npn_advertised_cb SSL_CTX_set_next_protos_advertised_cb jpayne@69: jpayne@69: typedef int (*SSL_CTX_npn_select_cb_func)(SSL *s, jpayne@69: unsigned char **out, jpayne@69: unsigned char *outlen, jpayne@69: const unsigned char *in, jpayne@69: unsigned int inlen, jpayne@69: void *arg); jpayne@69: void SSL_CTX_set_next_proto_select_cb(SSL_CTX *s, jpayne@69: SSL_CTX_npn_select_cb_func cb, jpayne@69: void *arg); jpayne@69: # define SSL_CTX_set_npn_select_cb SSL_CTX_set_next_proto_select_cb jpayne@69: jpayne@69: void SSL_get0_next_proto_negotiated(const SSL *s, const unsigned char **data, jpayne@69: unsigned *len); jpayne@69: # define SSL_get0_npn_negotiated SSL_get0_next_proto_negotiated jpayne@69: # endif jpayne@69: jpayne@69: __owur int SSL_select_next_proto(unsigned char **out, unsigned char *outlen, jpayne@69: const unsigned char *in, unsigned int inlen, jpayne@69: const unsigned char *client, jpayne@69: unsigned int client_len); jpayne@69: jpayne@69: # define OPENSSL_NPN_UNSUPPORTED 0 jpayne@69: # define OPENSSL_NPN_NEGOTIATED 1 jpayne@69: # define OPENSSL_NPN_NO_OVERLAP 2 jpayne@69: jpayne@69: __owur int SSL_CTX_set_alpn_protos(SSL_CTX *ctx, const unsigned char *protos, jpayne@69: unsigned int protos_len); jpayne@69: __owur int SSL_set_alpn_protos(SSL *ssl, const unsigned char *protos, jpayne@69: unsigned int protos_len); jpayne@69: typedef int (*SSL_CTX_alpn_select_cb_func)(SSL *ssl, jpayne@69: const unsigned char **out, jpayne@69: unsigned char *outlen, jpayne@69: const unsigned char *in, jpayne@69: unsigned int inlen, jpayne@69: void *arg); jpayne@69: void SSL_CTX_set_alpn_select_cb(SSL_CTX *ctx, jpayne@69: SSL_CTX_alpn_select_cb_func cb, jpayne@69: void *arg); jpayne@69: void SSL_get0_alpn_selected(const SSL *ssl, const unsigned char **data, jpayne@69: unsigned int *len); jpayne@69: jpayne@69: # ifndef OPENSSL_NO_PSK jpayne@69: /* jpayne@69: * the maximum length of the buffer given to callbacks containing the jpayne@69: * resulting identity/psk jpayne@69: */ jpayne@69: # define PSK_MAX_IDENTITY_LEN 128 jpayne@69: # define PSK_MAX_PSK_LEN 256 jpayne@69: typedef unsigned int (*SSL_psk_client_cb_func)(SSL *ssl, jpayne@69: const char *hint, jpayne@69: char *identity, jpayne@69: unsigned int max_identity_len, jpayne@69: unsigned char *psk, jpayne@69: unsigned int max_psk_len); jpayne@69: void SSL_CTX_set_psk_client_callback(SSL_CTX *ctx, SSL_psk_client_cb_func cb); jpayne@69: void SSL_set_psk_client_callback(SSL *ssl, SSL_psk_client_cb_func cb); jpayne@69: jpayne@69: typedef unsigned int (*SSL_psk_server_cb_func)(SSL *ssl, jpayne@69: const char *identity, jpayne@69: unsigned char *psk, jpayne@69: unsigned int max_psk_len); jpayne@69: void SSL_CTX_set_psk_server_callback(SSL_CTX *ctx, SSL_psk_server_cb_func cb); jpayne@69: void SSL_set_psk_server_callback(SSL *ssl, SSL_psk_server_cb_func cb); jpayne@69: jpayne@69: __owur int SSL_CTX_use_psk_identity_hint(SSL_CTX *ctx, const char *identity_hint); jpayne@69: __owur int SSL_use_psk_identity_hint(SSL *s, const char *identity_hint); jpayne@69: const char *SSL_get_psk_identity_hint(const SSL *s); jpayne@69: const char *SSL_get_psk_identity(const SSL *s); jpayne@69: # endif jpayne@69: jpayne@69: typedef int (*SSL_psk_find_session_cb_func)(SSL *ssl, jpayne@69: const unsigned char *identity, jpayne@69: size_t identity_len, jpayne@69: SSL_SESSION **sess); jpayne@69: typedef int (*SSL_psk_use_session_cb_func)(SSL *ssl, const EVP_MD *md, jpayne@69: const unsigned char **id, jpayne@69: size_t *idlen, jpayne@69: SSL_SESSION **sess); jpayne@69: jpayne@69: void SSL_set_psk_find_session_callback(SSL *s, SSL_psk_find_session_cb_func cb); jpayne@69: void SSL_CTX_set_psk_find_session_callback(SSL_CTX *ctx, jpayne@69: SSL_psk_find_session_cb_func cb); jpayne@69: void SSL_set_psk_use_session_callback(SSL *s, SSL_psk_use_session_cb_func cb); jpayne@69: void SSL_CTX_set_psk_use_session_callback(SSL_CTX *ctx, jpayne@69: SSL_psk_use_session_cb_func cb); jpayne@69: jpayne@69: /* Register callbacks to handle custom TLS Extensions for client or server. */ jpayne@69: jpayne@69: __owur int SSL_CTX_has_client_custom_ext(const SSL_CTX *ctx, jpayne@69: unsigned int ext_type); jpayne@69: jpayne@69: __owur int SSL_CTX_add_client_custom_ext(SSL_CTX *ctx, jpayne@69: unsigned int ext_type, jpayne@69: custom_ext_add_cb add_cb, jpayne@69: custom_ext_free_cb free_cb, jpayne@69: void *add_arg, jpayne@69: custom_ext_parse_cb parse_cb, jpayne@69: void *parse_arg); jpayne@69: jpayne@69: __owur int SSL_CTX_add_server_custom_ext(SSL_CTX *ctx, jpayne@69: unsigned int ext_type, jpayne@69: custom_ext_add_cb add_cb, jpayne@69: custom_ext_free_cb free_cb, jpayne@69: void *add_arg, jpayne@69: custom_ext_parse_cb parse_cb, jpayne@69: void *parse_arg); jpayne@69: jpayne@69: __owur int SSL_CTX_add_custom_ext(SSL_CTX *ctx, unsigned int ext_type, jpayne@69: unsigned int context, jpayne@69: SSL_custom_ext_add_cb_ex add_cb, jpayne@69: SSL_custom_ext_free_cb_ex free_cb, jpayne@69: void *add_arg, jpayne@69: SSL_custom_ext_parse_cb_ex parse_cb, jpayne@69: void *parse_arg); jpayne@69: jpayne@69: __owur int SSL_extension_supported(unsigned int ext_type); jpayne@69: jpayne@69: # define SSL_NOTHING 1 jpayne@69: # define SSL_WRITING 2 jpayne@69: # define SSL_READING 3 jpayne@69: # define SSL_X509_LOOKUP 4 jpayne@69: # define SSL_ASYNC_PAUSED 5 jpayne@69: # define SSL_ASYNC_NO_JOBS 6 jpayne@69: # define SSL_CLIENT_HELLO_CB 7 jpayne@69: jpayne@69: /* These will only be used when doing non-blocking IO */ jpayne@69: # define SSL_want_nothing(s) (SSL_want(s) == SSL_NOTHING) jpayne@69: # define SSL_want_read(s) (SSL_want(s) == SSL_READING) jpayne@69: # define SSL_want_write(s) (SSL_want(s) == SSL_WRITING) jpayne@69: # define SSL_want_x509_lookup(s) (SSL_want(s) == SSL_X509_LOOKUP) jpayne@69: # define SSL_want_async(s) (SSL_want(s) == SSL_ASYNC_PAUSED) jpayne@69: # define SSL_want_async_job(s) (SSL_want(s) == SSL_ASYNC_NO_JOBS) jpayne@69: # define SSL_want_client_hello_cb(s) (SSL_want(s) == SSL_CLIENT_HELLO_CB) jpayne@69: jpayne@69: # define SSL_MAC_FLAG_READ_MAC_STREAM 1 jpayne@69: # define SSL_MAC_FLAG_WRITE_MAC_STREAM 2 jpayne@69: jpayne@69: /* jpayne@69: * A callback for logging out TLS key material. This callback should log out jpayne@69: * |line| followed by a newline. jpayne@69: */ jpayne@69: typedef void (*SSL_CTX_keylog_cb_func)(const SSL *ssl, const char *line); jpayne@69: jpayne@69: /* jpayne@69: * SSL_CTX_set_keylog_callback configures a callback to log key material. This jpayne@69: * is intended for debugging use with tools like Wireshark. The cb function jpayne@69: * should log line followed by a newline. jpayne@69: */ jpayne@69: void SSL_CTX_set_keylog_callback(SSL_CTX *ctx, SSL_CTX_keylog_cb_func cb); jpayne@69: jpayne@69: /* jpayne@69: * SSL_CTX_get_keylog_callback returns the callback configured by jpayne@69: * SSL_CTX_set_keylog_callback. jpayne@69: */ jpayne@69: SSL_CTX_keylog_cb_func SSL_CTX_get_keylog_callback(const SSL_CTX *ctx); jpayne@69: jpayne@69: int SSL_CTX_set_max_early_data(SSL_CTX *ctx, uint32_t max_early_data); jpayne@69: uint32_t SSL_CTX_get_max_early_data(const SSL_CTX *ctx); jpayne@69: int SSL_set_max_early_data(SSL *s, uint32_t max_early_data); jpayne@69: uint32_t SSL_get_max_early_data(const SSL *s); jpayne@69: int SSL_CTX_set_recv_max_early_data(SSL_CTX *ctx, uint32_t recv_max_early_data); jpayne@69: uint32_t SSL_CTX_get_recv_max_early_data(const SSL_CTX *ctx); jpayne@69: int SSL_set_recv_max_early_data(SSL *s, uint32_t recv_max_early_data); jpayne@69: uint32_t SSL_get_recv_max_early_data(const SSL *s); jpayne@69: jpayne@69: #ifdef __cplusplus jpayne@69: } jpayne@69: #endif jpayne@69: jpayne@69: # include jpayne@69: # include jpayne@69: # include /* This is mostly sslv3 with a few tweaks */ jpayne@69: # include /* Datagram TLS */ jpayne@69: # include /* Support for the use_srtp extension */ jpayne@69: jpayne@69: #ifdef __cplusplus jpayne@69: extern "C" { jpayne@69: #endif jpayne@69: jpayne@69: /* jpayne@69: * These need to be after the above set of includes due to a compiler bug jpayne@69: * in VisualStudio 2015 jpayne@69: */ jpayne@69: DEFINE_STACK_OF_CONST(SSL_CIPHER) jpayne@69: DEFINE_STACK_OF(SSL_COMP) jpayne@69: jpayne@69: /* compatibility */ jpayne@69: # define SSL_set_app_data(s,arg) (SSL_set_ex_data(s,0,(char *)(arg))) jpayne@69: # define SSL_get_app_data(s) (SSL_get_ex_data(s,0)) jpayne@69: # define SSL_SESSION_set_app_data(s,a) (SSL_SESSION_set_ex_data(s,0, \ jpayne@69: (char *)(a))) jpayne@69: # define SSL_SESSION_get_app_data(s) (SSL_SESSION_get_ex_data(s,0)) jpayne@69: # define SSL_CTX_get_app_data(ctx) (SSL_CTX_get_ex_data(ctx,0)) jpayne@69: # define SSL_CTX_set_app_data(ctx,arg) (SSL_CTX_set_ex_data(ctx,0, \ jpayne@69: (char *)(arg))) jpayne@69: DEPRECATEDIN_1_1_0(void SSL_set_debug(SSL *s, int debug)) jpayne@69: jpayne@69: /* TLSv1.3 KeyUpdate message types */ jpayne@69: /* -1 used so that this is an invalid value for the on-the-wire protocol */ jpayne@69: #define SSL_KEY_UPDATE_NONE -1 jpayne@69: /* Values as defined for the on-the-wire protocol */ jpayne@69: #define SSL_KEY_UPDATE_NOT_REQUESTED 0 jpayne@69: #define SSL_KEY_UPDATE_REQUESTED 1 jpayne@69: jpayne@69: /* jpayne@69: * The valid handshake states (one for each type message sent and one for each jpayne@69: * type of message received). There are also two "special" states: jpayne@69: * TLS = TLS or DTLS state jpayne@69: * DTLS = DTLS specific state jpayne@69: * CR/SR = Client Read/Server Read jpayne@69: * CW/SW = Client Write/Server Write jpayne@69: * jpayne@69: * The "special" states are: jpayne@69: * TLS_ST_BEFORE = No handshake has been initiated yet jpayne@69: * TLS_ST_OK = A handshake has been successfully completed jpayne@69: */ jpayne@69: typedef enum { jpayne@69: TLS_ST_BEFORE, jpayne@69: TLS_ST_OK, jpayne@69: DTLS_ST_CR_HELLO_VERIFY_REQUEST, jpayne@69: TLS_ST_CR_SRVR_HELLO, jpayne@69: TLS_ST_CR_CERT, jpayne@69: TLS_ST_CR_CERT_STATUS, jpayne@69: TLS_ST_CR_KEY_EXCH, jpayne@69: TLS_ST_CR_CERT_REQ, jpayne@69: TLS_ST_CR_SRVR_DONE, jpayne@69: TLS_ST_CR_SESSION_TICKET, jpayne@69: TLS_ST_CR_CHANGE, jpayne@69: TLS_ST_CR_FINISHED, jpayne@69: TLS_ST_CW_CLNT_HELLO, jpayne@69: TLS_ST_CW_CERT, jpayne@69: TLS_ST_CW_KEY_EXCH, jpayne@69: TLS_ST_CW_CERT_VRFY, jpayne@69: TLS_ST_CW_CHANGE, jpayne@69: TLS_ST_CW_NEXT_PROTO, jpayne@69: TLS_ST_CW_FINISHED, jpayne@69: TLS_ST_SW_HELLO_REQ, jpayne@69: TLS_ST_SR_CLNT_HELLO, jpayne@69: DTLS_ST_SW_HELLO_VERIFY_REQUEST, jpayne@69: TLS_ST_SW_SRVR_HELLO, jpayne@69: TLS_ST_SW_CERT, jpayne@69: TLS_ST_SW_KEY_EXCH, jpayne@69: TLS_ST_SW_CERT_REQ, jpayne@69: TLS_ST_SW_SRVR_DONE, jpayne@69: TLS_ST_SR_CERT, jpayne@69: TLS_ST_SR_KEY_EXCH, jpayne@69: TLS_ST_SR_CERT_VRFY, jpayne@69: TLS_ST_SR_NEXT_PROTO, jpayne@69: TLS_ST_SR_CHANGE, jpayne@69: TLS_ST_SR_FINISHED, jpayne@69: TLS_ST_SW_SESSION_TICKET, jpayne@69: TLS_ST_SW_CERT_STATUS, jpayne@69: TLS_ST_SW_CHANGE, jpayne@69: TLS_ST_SW_FINISHED, jpayne@69: TLS_ST_SW_ENCRYPTED_EXTENSIONS, jpayne@69: TLS_ST_CR_ENCRYPTED_EXTENSIONS, jpayne@69: TLS_ST_CR_CERT_VRFY, jpayne@69: TLS_ST_SW_CERT_VRFY, jpayne@69: TLS_ST_CR_HELLO_REQ, jpayne@69: TLS_ST_SW_KEY_UPDATE, jpayne@69: TLS_ST_CW_KEY_UPDATE, jpayne@69: TLS_ST_SR_KEY_UPDATE, jpayne@69: TLS_ST_CR_KEY_UPDATE, jpayne@69: TLS_ST_EARLY_DATA, jpayne@69: TLS_ST_PENDING_EARLY_DATA_END, jpayne@69: TLS_ST_CW_END_OF_EARLY_DATA, jpayne@69: TLS_ST_SR_END_OF_EARLY_DATA jpayne@69: } OSSL_HANDSHAKE_STATE; jpayne@69: jpayne@69: /* jpayne@69: * Most of the following state values are no longer used and are defined to be jpayne@69: * the closest equivalent value in the current state machine code. Not all jpayne@69: * defines have an equivalent and are set to a dummy value (-1). SSL_ST_CONNECT jpayne@69: * and SSL_ST_ACCEPT are still in use in the definition of SSL_CB_ACCEPT_LOOP, jpayne@69: * SSL_CB_ACCEPT_EXIT, SSL_CB_CONNECT_LOOP and SSL_CB_CONNECT_EXIT. jpayne@69: */ jpayne@69: jpayne@69: # define SSL_ST_CONNECT 0x1000 jpayne@69: # define SSL_ST_ACCEPT 0x2000 jpayne@69: jpayne@69: # define SSL_ST_MASK 0x0FFF jpayne@69: jpayne@69: # define SSL_CB_LOOP 0x01 jpayne@69: # define SSL_CB_EXIT 0x02 jpayne@69: # define SSL_CB_READ 0x04 jpayne@69: # define SSL_CB_WRITE 0x08 jpayne@69: # define SSL_CB_ALERT 0x4000/* used in callback */ jpayne@69: # define SSL_CB_READ_ALERT (SSL_CB_ALERT|SSL_CB_READ) jpayne@69: # define SSL_CB_WRITE_ALERT (SSL_CB_ALERT|SSL_CB_WRITE) jpayne@69: # define SSL_CB_ACCEPT_LOOP (SSL_ST_ACCEPT|SSL_CB_LOOP) jpayne@69: # define SSL_CB_ACCEPT_EXIT (SSL_ST_ACCEPT|SSL_CB_EXIT) jpayne@69: # define SSL_CB_CONNECT_LOOP (SSL_ST_CONNECT|SSL_CB_LOOP) jpayne@69: # define SSL_CB_CONNECT_EXIT (SSL_ST_CONNECT|SSL_CB_EXIT) jpayne@69: # define SSL_CB_HANDSHAKE_START 0x10 jpayne@69: # define SSL_CB_HANDSHAKE_DONE 0x20 jpayne@69: jpayne@69: /* Is the SSL_connection established? */ jpayne@69: # define SSL_in_connect_init(a) (SSL_in_init(a) && !SSL_is_server(a)) jpayne@69: # define SSL_in_accept_init(a) (SSL_in_init(a) && SSL_is_server(a)) jpayne@69: int SSL_in_init(const SSL *s); jpayne@69: int SSL_in_before(const SSL *s); jpayne@69: int SSL_is_init_finished(const SSL *s); jpayne@69: jpayne@69: /* jpayne@69: * The following 3 states are kept in ssl->rlayer.rstate when reads fail, you jpayne@69: * should not need these jpayne@69: */ jpayne@69: # define SSL_ST_READ_HEADER 0xF0 jpayne@69: # define SSL_ST_READ_BODY 0xF1 jpayne@69: # define SSL_ST_READ_DONE 0xF2 jpayne@69: jpayne@69: /*- jpayne@69: * Obtain latest Finished message jpayne@69: * -- that we sent (SSL_get_finished) jpayne@69: * -- that we expected from peer (SSL_get_peer_finished). jpayne@69: * Returns length (0 == no Finished so far), copies up to 'count' bytes. jpayne@69: */ jpayne@69: size_t SSL_get_finished(const SSL *s, void *buf, size_t count); jpayne@69: size_t SSL_get_peer_finished(const SSL *s, void *buf, size_t count); jpayne@69: jpayne@69: /* jpayne@69: * use either SSL_VERIFY_NONE or SSL_VERIFY_PEER, the last 3 options are jpayne@69: * 'ored' with SSL_VERIFY_PEER if they are desired jpayne@69: */ jpayne@69: # define SSL_VERIFY_NONE 0x00 jpayne@69: # define SSL_VERIFY_PEER 0x01 jpayne@69: # define SSL_VERIFY_FAIL_IF_NO_PEER_CERT 0x02 jpayne@69: # define SSL_VERIFY_CLIENT_ONCE 0x04 jpayne@69: # define SSL_VERIFY_POST_HANDSHAKE 0x08 jpayne@69: jpayne@69: # if OPENSSL_API_COMPAT < 0x10100000L jpayne@69: # define OpenSSL_add_ssl_algorithms() SSL_library_init() jpayne@69: # define SSLeay_add_ssl_algorithms() SSL_library_init() jpayne@69: # endif jpayne@69: jpayne@69: /* More backward compatibility */ jpayne@69: # define SSL_get_cipher(s) \ jpayne@69: SSL_CIPHER_get_name(SSL_get_current_cipher(s)) jpayne@69: # define SSL_get_cipher_bits(s,np) \ jpayne@69: SSL_CIPHER_get_bits(SSL_get_current_cipher(s),np) jpayne@69: # define SSL_get_cipher_version(s) \ jpayne@69: SSL_CIPHER_get_version(SSL_get_current_cipher(s)) jpayne@69: # define SSL_get_cipher_name(s) \ jpayne@69: SSL_CIPHER_get_name(SSL_get_current_cipher(s)) jpayne@69: # define SSL_get_time(a) SSL_SESSION_get_time(a) jpayne@69: # define SSL_set_time(a,b) SSL_SESSION_set_time((a),(b)) jpayne@69: # define SSL_get_timeout(a) SSL_SESSION_get_timeout(a) jpayne@69: # define SSL_set_timeout(a,b) SSL_SESSION_set_timeout((a),(b)) jpayne@69: jpayne@69: # define d2i_SSL_SESSION_bio(bp,s_id) ASN1_d2i_bio_of(SSL_SESSION,SSL_SESSION_new,d2i_SSL_SESSION,bp,s_id) jpayne@69: # define i2d_SSL_SESSION_bio(bp,s_id) ASN1_i2d_bio_of(SSL_SESSION,i2d_SSL_SESSION,bp,s_id) jpayne@69: jpayne@69: DECLARE_PEM_rw(SSL_SESSION, SSL_SESSION) jpayne@69: # define SSL_AD_REASON_OFFSET 1000/* offset to get SSL_R_... value jpayne@69: * from SSL_AD_... */ jpayne@69: /* These alert types are for SSLv3 and TLSv1 */ jpayne@69: # define SSL_AD_CLOSE_NOTIFY SSL3_AD_CLOSE_NOTIFY jpayne@69: /* fatal */ jpayne@69: # define SSL_AD_UNEXPECTED_MESSAGE SSL3_AD_UNEXPECTED_MESSAGE jpayne@69: /* fatal */ jpayne@69: # define SSL_AD_BAD_RECORD_MAC SSL3_AD_BAD_RECORD_MAC jpayne@69: # define SSL_AD_DECRYPTION_FAILED TLS1_AD_DECRYPTION_FAILED jpayne@69: # define SSL_AD_RECORD_OVERFLOW TLS1_AD_RECORD_OVERFLOW jpayne@69: /* fatal */ jpayne@69: # define SSL_AD_DECOMPRESSION_FAILURE SSL3_AD_DECOMPRESSION_FAILURE jpayne@69: /* fatal */ jpayne@69: # define SSL_AD_HANDSHAKE_FAILURE SSL3_AD_HANDSHAKE_FAILURE jpayne@69: /* Not for TLS */ jpayne@69: # define SSL_AD_NO_CERTIFICATE SSL3_AD_NO_CERTIFICATE jpayne@69: # define SSL_AD_BAD_CERTIFICATE SSL3_AD_BAD_CERTIFICATE jpayne@69: # define SSL_AD_UNSUPPORTED_CERTIFICATE SSL3_AD_UNSUPPORTED_CERTIFICATE jpayne@69: # define SSL_AD_CERTIFICATE_REVOKED SSL3_AD_CERTIFICATE_REVOKED jpayne@69: # define SSL_AD_CERTIFICATE_EXPIRED SSL3_AD_CERTIFICATE_EXPIRED jpayne@69: # define SSL_AD_CERTIFICATE_UNKNOWN SSL3_AD_CERTIFICATE_UNKNOWN jpayne@69: /* fatal */ jpayne@69: # define SSL_AD_ILLEGAL_PARAMETER SSL3_AD_ILLEGAL_PARAMETER jpayne@69: /* fatal */ jpayne@69: # define SSL_AD_UNKNOWN_CA TLS1_AD_UNKNOWN_CA jpayne@69: /* fatal */ jpayne@69: # define SSL_AD_ACCESS_DENIED TLS1_AD_ACCESS_DENIED jpayne@69: /* fatal */ jpayne@69: # define SSL_AD_DECODE_ERROR TLS1_AD_DECODE_ERROR jpayne@69: # define SSL_AD_DECRYPT_ERROR TLS1_AD_DECRYPT_ERROR jpayne@69: /* fatal */ jpayne@69: # define SSL_AD_EXPORT_RESTRICTION TLS1_AD_EXPORT_RESTRICTION jpayne@69: /* fatal */ jpayne@69: # define SSL_AD_PROTOCOL_VERSION TLS1_AD_PROTOCOL_VERSION jpayne@69: /* fatal */ jpayne@69: # define SSL_AD_INSUFFICIENT_SECURITY TLS1_AD_INSUFFICIENT_SECURITY jpayne@69: /* fatal */ jpayne@69: # define SSL_AD_INTERNAL_ERROR TLS1_AD_INTERNAL_ERROR jpayne@69: # define SSL_AD_USER_CANCELLED TLS1_AD_USER_CANCELLED jpayne@69: # define SSL_AD_NO_RENEGOTIATION TLS1_AD_NO_RENEGOTIATION jpayne@69: # define SSL_AD_MISSING_EXTENSION TLS13_AD_MISSING_EXTENSION jpayne@69: # define SSL_AD_CERTIFICATE_REQUIRED TLS13_AD_CERTIFICATE_REQUIRED jpayne@69: # define SSL_AD_UNSUPPORTED_EXTENSION TLS1_AD_UNSUPPORTED_EXTENSION jpayne@69: # define SSL_AD_CERTIFICATE_UNOBTAINABLE TLS1_AD_CERTIFICATE_UNOBTAINABLE jpayne@69: # define SSL_AD_UNRECOGNIZED_NAME TLS1_AD_UNRECOGNIZED_NAME jpayne@69: # define SSL_AD_BAD_CERTIFICATE_STATUS_RESPONSE TLS1_AD_BAD_CERTIFICATE_STATUS_RESPONSE jpayne@69: # define SSL_AD_BAD_CERTIFICATE_HASH_VALUE TLS1_AD_BAD_CERTIFICATE_HASH_VALUE jpayne@69: /* fatal */ jpayne@69: # define SSL_AD_UNKNOWN_PSK_IDENTITY TLS1_AD_UNKNOWN_PSK_IDENTITY jpayne@69: /* fatal */ jpayne@69: # define SSL_AD_INAPPROPRIATE_FALLBACK TLS1_AD_INAPPROPRIATE_FALLBACK jpayne@69: # define SSL_AD_NO_APPLICATION_PROTOCOL TLS1_AD_NO_APPLICATION_PROTOCOL jpayne@69: # define SSL_ERROR_NONE 0 jpayne@69: # define SSL_ERROR_SSL 1 jpayne@69: # define SSL_ERROR_WANT_READ 2 jpayne@69: # define SSL_ERROR_WANT_WRITE 3 jpayne@69: # define SSL_ERROR_WANT_X509_LOOKUP 4 jpayne@69: # define SSL_ERROR_SYSCALL 5/* look at error stack/return jpayne@69: * value/errno */ jpayne@69: # define SSL_ERROR_ZERO_RETURN 6 jpayne@69: # define SSL_ERROR_WANT_CONNECT 7 jpayne@69: # define SSL_ERROR_WANT_ACCEPT 8 jpayne@69: # define SSL_ERROR_WANT_ASYNC 9 jpayne@69: # define SSL_ERROR_WANT_ASYNC_JOB 10 jpayne@69: # define SSL_ERROR_WANT_CLIENT_HELLO_CB 11 jpayne@69: # define SSL_CTRL_SET_TMP_DH 3 jpayne@69: # define SSL_CTRL_SET_TMP_ECDH 4 jpayne@69: # define SSL_CTRL_SET_TMP_DH_CB 6 jpayne@69: # define SSL_CTRL_GET_CLIENT_CERT_REQUEST 9 jpayne@69: # define SSL_CTRL_GET_NUM_RENEGOTIATIONS 10 jpayne@69: # define SSL_CTRL_CLEAR_NUM_RENEGOTIATIONS 11 jpayne@69: # define SSL_CTRL_GET_TOTAL_RENEGOTIATIONS 12 jpayne@69: # define SSL_CTRL_GET_FLAGS 13 jpayne@69: # define SSL_CTRL_EXTRA_CHAIN_CERT 14 jpayne@69: # define SSL_CTRL_SET_MSG_CALLBACK 15 jpayne@69: # define SSL_CTRL_SET_MSG_CALLBACK_ARG 16 jpayne@69: /* only applies to datagram connections */ jpayne@69: # define SSL_CTRL_SET_MTU 17 jpayne@69: /* Stats */ jpayne@69: # define SSL_CTRL_SESS_NUMBER 20 jpayne@69: # define SSL_CTRL_SESS_CONNECT 21 jpayne@69: # define SSL_CTRL_SESS_CONNECT_GOOD 22 jpayne@69: # define SSL_CTRL_SESS_CONNECT_RENEGOTIATE 23 jpayne@69: # define SSL_CTRL_SESS_ACCEPT 24 jpayne@69: # define SSL_CTRL_SESS_ACCEPT_GOOD 25 jpayne@69: # define SSL_CTRL_SESS_ACCEPT_RENEGOTIATE 26 jpayne@69: # define SSL_CTRL_SESS_HIT 27 jpayne@69: # define SSL_CTRL_SESS_CB_HIT 28 jpayne@69: # define SSL_CTRL_SESS_MISSES 29 jpayne@69: # define SSL_CTRL_SESS_TIMEOUTS 30 jpayne@69: # define SSL_CTRL_SESS_CACHE_FULL 31 jpayne@69: # define SSL_CTRL_MODE 33 jpayne@69: # define SSL_CTRL_GET_READ_AHEAD 40 jpayne@69: # define SSL_CTRL_SET_READ_AHEAD 41 jpayne@69: # define SSL_CTRL_SET_SESS_CACHE_SIZE 42 jpayne@69: # define SSL_CTRL_GET_SESS_CACHE_SIZE 43 jpayne@69: # define SSL_CTRL_SET_SESS_CACHE_MODE 44 jpayne@69: # define SSL_CTRL_GET_SESS_CACHE_MODE 45 jpayne@69: # define SSL_CTRL_GET_MAX_CERT_LIST 50 jpayne@69: # define SSL_CTRL_SET_MAX_CERT_LIST 51 jpayne@69: # define SSL_CTRL_SET_MAX_SEND_FRAGMENT 52 jpayne@69: /* see tls1.h for macros based on these */ jpayne@69: # define SSL_CTRL_SET_TLSEXT_SERVERNAME_CB 53 jpayne@69: # define SSL_CTRL_SET_TLSEXT_SERVERNAME_ARG 54 jpayne@69: # define SSL_CTRL_SET_TLSEXT_HOSTNAME 55 jpayne@69: # define SSL_CTRL_SET_TLSEXT_DEBUG_CB 56 jpayne@69: # define SSL_CTRL_SET_TLSEXT_DEBUG_ARG 57 jpayne@69: # define SSL_CTRL_GET_TLSEXT_TICKET_KEYS 58 jpayne@69: # define SSL_CTRL_SET_TLSEXT_TICKET_KEYS 59 jpayne@69: /*# define SSL_CTRL_SET_TLSEXT_OPAQUE_PRF_INPUT 60 */ jpayne@69: /*# define SSL_CTRL_SET_TLSEXT_OPAQUE_PRF_INPUT_CB 61 */ jpayne@69: /*# define SSL_CTRL_SET_TLSEXT_OPAQUE_PRF_INPUT_CB_ARG 62 */ jpayne@69: # define SSL_CTRL_SET_TLSEXT_STATUS_REQ_CB 63 jpayne@69: # define SSL_CTRL_SET_TLSEXT_STATUS_REQ_CB_ARG 64 jpayne@69: # define SSL_CTRL_SET_TLSEXT_STATUS_REQ_TYPE 65 jpayne@69: # define SSL_CTRL_GET_TLSEXT_STATUS_REQ_EXTS 66 jpayne@69: # define SSL_CTRL_SET_TLSEXT_STATUS_REQ_EXTS 67 jpayne@69: # define SSL_CTRL_GET_TLSEXT_STATUS_REQ_IDS 68 jpayne@69: # define SSL_CTRL_SET_TLSEXT_STATUS_REQ_IDS 69 jpayne@69: # define SSL_CTRL_GET_TLSEXT_STATUS_REQ_OCSP_RESP 70 jpayne@69: # define SSL_CTRL_SET_TLSEXT_STATUS_REQ_OCSP_RESP 71 jpayne@69: # define SSL_CTRL_SET_TLSEXT_TICKET_KEY_CB 72 jpayne@69: # define SSL_CTRL_SET_TLS_EXT_SRP_USERNAME_CB 75 jpayne@69: # define SSL_CTRL_SET_SRP_VERIFY_PARAM_CB 76 jpayne@69: # define SSL_CTRL_SET_SRP_GIVE_CLIENT_PWD_CB 77 jpayne@69: # define SSL_CTRL_SET_SRP_ARG 78 jpayne@69: # define SSL_CTRL_SET_TLS_EXT_SRP_USERNAME 79 jpayne@69: # define SSL_CTRL_SET_TLS_EXT_SRP_STRENGTH 80 jpayne@69: # define SSL_CTRL_SET_TLS_EXT_SRP_PASSWORD 81 jpayne@69: # ifndef OPENSSL_NO_HEARTBEATS jpayne@69: # define SSL_CTRL_DTLS_EXT_SEND_HEARTBEAT 85 jpayne@69: # define SSL_CTRL_GET_DTLS_EXT_HEARTBEAT_PENDING 86 jpayne@69: # define SSL_CTRL_SET_DTLS_EXT_HEARTBEAT_NO_REQUESTS 87 jpayne@69: # endif jpayne@69: # define DTLS_CTRL_GET_TIMEOUT 73 jpayne@69: # define DTLS_CTRL_HANDLE_TIMEOUT 74 jpayne@69: # define SSL_CTRL_GET_RI_SUPPORT 76 jpayne@69: # define SSL_CTRL_CLEAR_MODE 78 jpayne@69: # define SSL_CTRL_SET_NOT_RESUMABLE_SESS_CB 79 jpayne@69: # define SSL_CTRL_GET_EXTRA_CHAIN_CERTS 82 jpayne@69: # define SSL_CTRL_CLEAR_EXTRA_CHAIN_CERTS 83 jpayne@69: # define SSL_CTRL_CHAIN 88 jpayne@69: # define SSL_CTRL_CHAIN_CERT 89 jpayne@69: # define SSL_CTRL_GET_GROUPS 90 jpayne@69: # define SSL_CTRL_SET_GROUPS 91 jpayne@69: # define SSL_CTRL_SET_GROUPS_LIST 92 jpayne@69: # define SSL_CTRL_GET_SHARED_GROUP 93 jpayne@69: # define SSL_CTRL_SET_SIGALGS 97 jpayne@69: # define SSL_CTRL_SET_SIGALGS_LIST 98 jpayne@69: # define SSL_CTRL_CERT_FLAGS 99 jpayne@69: # define SSL_CTRL_CLEAR_CERT_FLAGS 100 jpayne@69: # define SSL_CTRL_SET_CLIENT_SIGALGS 101 jpayne@69: # define SSL_CTRL_SET_CLIENT_SIGALGS_LIST 102 jpayne@69: # define SSL_CTRL_GET_CLIENT_CERT_TYPES 103 jpayne@69: # define SSL_CTRL_SET_CLIENT_CERT_TYPES 104 jpayne@69: # define SSL_CTRL_BUILD_CERT_CHAIN 105 jpayne@69: # define SSL_CTRL_SET_VERIFY_CERT_STORE 106 jpayne@69: # define SSL_CTRL_SET_CHAIN_CERT_STORE 107 jpayne@69: # define SSL_CTRL_GET_PEER_SIGNATURE_NID 108 jpayne@69: # define SSL_CTRL_GET_PEER_TMP_KEY 109 jpayne@69: # define SSL_CTRL_GET_RAW_CIPHERLIST 110 jpayne@69: # define SSL_CTRL_GET_EC_POINT_FORMATS 111 jpayne@69: # define SSL_CTRL_GET_CHAIN_CERTS 115 jpayne@69: # define SSL_CTRL_SELECT_CURRENT_CERT 116 jpayne@69: # define SSL_CTRL_SET_CURRENT_CERT 117 jpayne@69: # define SSL_CTRL_SET_DH_AUTO 118 jpayne@69: # define DTLS_CTRL_SET_LINK_MTU 120 jpayne@69: # define DTLS_CTRL_GET_LINK_MIN_MTU 121 jpayne@69: # define SSL_CTRL_GET_EXTMS_SUPPORT 122 jpayne@69: # define SSL_CTRL_SET_MIN_PROTO_VERSION 123 jpayne@69: # define SSL_CTRL_SET_MAX_PROTO_VERSION 124 jpayne@69: # define SSL_CTRL_SET_SPLIT_SEND_FRAGMENT 125 jpayne@69: # define SSL_CTRL_SET_MAX_PIPELINES 126 jpayne@69: # define SSL_CTRL_GET_TLSEXT_STATUS_REQ_TYPE 127 jpayne@69: # define SSL_CTRL_GET_TLSEXT_STATUS_REQ_CB 128 jpayne@69: # define SSL_CTRL_GET_TLSEXT_STATUS_REQ_CB_ARG 129 jpayne@69: # define SSL_CTRL_GET_MIN_PROTO_VERSION 130 jpayne@69: # define SSL_CTRL_GET_MAX_PROTO_VERSION 131 jpayne@69: # define SSL_CTRL_GET_SIGNATURE_NID 132 jpayne@69: # define SSL_CTRL_GET_TMP_KEY 133 jpayne@69: # define SSL_CTRL_GET_VERIFY_CERT_STORE 137 jpayne@69: # define SSL_CTRL_GET_CHAIN_CERT_STORE 138 jpayne@69: # define SSL_CERT_SET_FIRST 1 jpayne@69: # define SSL_CERT_SET_NEXT 2 jpayne@69: # define SSL_CERT_SET_SERVER 3 jpayne@69: # define DTLSv1_get_timeout(ssl, arg) \ jpayne@69: SSL_ctrl(ssl,DTLS_CTRL_GET_TIMEOUT,0, (void *)(arg)) jpayne@69: # define DTLSv1_handle_timeout(ssl) \ jpayne@69: SSL_ctrl(ssl,DTLS_CTRL_HANDLE_TIMEOUT,0, NULL) jpayne@69: # define SSL_num_renegotiations(ssl) \ jpayne@69: SSL_ctrl((ssl),SSL_CTRL_GET_NUM_RENEGOTIATIONS,0,NULL) jpayne@69: # define SSL_clear_num_renegotiations(ssl) \ jpayne@69: SSL_ctrl((ssl),SSL_CTRL_CLEAR_NUM_RENEGOTIATIONS,0,NULL) jpayne@69: # define SSL_total_renegotiations(ssl) \ jpayne@69: SSL_ctrl((ssl),SSL_CTRL_GET_TOTAL_RENEGOTIATIONS,0,NULL) jpayne@69: # define SSL_CTX_set_tmp_dh(ctx,dh) \ jpayne@69: SSL_CTX_ctrl(ctx,SSL_CTRL_SET_TMP_DH,0,(char *)(dh)) jpayne@69: # define SSL_CTX_set_tmp_ecdh(ctx,ecdh) \ jpayne@69: SSL_CTX_ctrl(ctx,SSL_CTRL_SET_TMP_ECDH,0,(char *)(ecdh)) jpayne@69: # define SSL_CTX_set_dh_auto(ctx, onoff) \ jpayne@69: SSL_CTX_ctrl(ctx,SSL_CTRL_SET_DH_AUTO,onoff,NULL) jpayne@69: # define SSL_set_dh_auto(s, onoff) \ jpayne@69: SSL_ctrl(s,SSL_CTRL_SET_DH_AUTO,onoff,NULL) jpayne@69: # define SSL_set_tmp_dh(ssl,dh) \ jpayne@69: SSL_ctrl(ssl,SSL_CTRL_SET_TMP_DH,0,(char *)(dh)) jpayne@69: # define SSL_set_tmp_ecdh(ssl,ecdh) \ jpayne@69: SSL_ctrl(ssl,SSL_CTRL_SET_TMP_ECDH,0,(char *)(ecdh)) jpayne@69: # define SSL_CTX_add_extra_chain_cert(ctx,x509) \ jpayne@69: SSL_CTX_ctrl(ctx,SSL_CTRL_EXTRA_CHAIN_CERT,0,(char *)(x509)) jpayne@69: # define SSL_CTX_get_extra_chain_certs(ctx,px509) \ jpayne@69: SSL_CTX_ctrl(ctx,SSL_CTRL_GET_EXTRA_CHAIN_CERTS,0,px509) jpayne@69: # define SSL_CTX_get_extra_chain_certs_only(ctx,px509) \ jpayne@69: SSL_CTX_ctrl(ctx,SSL_CTRL_GET_EXTRA_CHAIN_CERTS,1,px509) jpayne@69: # define SSL_CTX_clear_extra_chain_certs(ctx) \ jpayne@69: SSL_CTX_ctrl(ctx,SSL_CTRL_CLEAR_EXTRA_CHAIN_CERTS,0,NULL) jpayne@69: # define SSL_CTX_set0_chain(ctx,sk) \ jpayne@69: SSL_CTX_ctrl(ctx,SSL_CTRL_CHAIN,0,(char *)(sk)) jpayne@69: # define SSL_CTX_set1_chain(ctx,sk) \ jpayne@69: SSL_CTX_ctrl(ctx,SSL_CTRL_CHAIN,1,(char *)(sk)) jpayne@69: # define SSL_CTX_add0_chain_cert(ctx,x509) \ jpayne@69: SSL_CTX_ctrl(ctx,SSL_CTRL_CHAIN_CERT,0,(char *)(x509)) jpayne@69: # define SSL_CTX_add1_chain_cert(ctx,x509) \ jpayne@69: SSL_CTX_ctrl(ctx,SSL_CTRL_CHAIN_CERT,1,(char *)(x509)) jpayne@69: # define SSL_CTX_get0_chain_certs(ctx,px509) \ jpayne@69: SSL_CTX_ctrl(ctx,SSL_CTRL_GET_CHAIN_CERTS,0,px509) jpayne@69: # define SSL_CTX_clear_chain_certs(ctx) \ jpayne@69: SSL_CTX_set0_chain(ctx,NULL) jpayne@69: # define SSL_CTX_build_cert_chain(ctx, flags) \ jpayne@69: SSL_CTX_ctrl(ctx,SSL_CTRL_BUILD_CERT_CHAIN, flags, NULL) jpayne@69: # define SSL_CTX_select_current_cert(ctx,x509) \ jpayne@69: SSL_CTX_ctrl(ctx,SSL_CTRL_SELECT_CURRENT_CERT,0,(char *)(x509)) jpayne@69: # define SSL_CTX_set_current_cert(ctx, op) \ jpayne@69: SSL_CTX_ctrl(ctx,SSL_CTRL_SET_CURRENT_CERT, op, NULL) jpayne@69: # define SSL_CTX_set0_verify_cert_store(ctx,st) \ jpayne@69: SSL_CTX_ctrl(ctx,SSL_CTRL_SET_VERIFY_CERT_STORE,0,(char *)(st)) jpayne@69: # define SSL_CTX_set1_verify_cert_store(ctx,st) \ jpayne@69: SSL_CTX_ctrl(ctx,SSL_CTRL_SET_VERIFY_CERT_STORE,1,(char *)(st)) jpayne@69: # define SSL_CTX_get0_verify_cert_store(ctx,st) \ jpayne@69: SSL_CTX_ctrl(ctx,SSL_CTRL_GET_VERIFY_CERT_STORE,0,(char *)(st)) jpayne@69: # define SSL_CTX_set0_chain_cert_store(ctx,st) \ jpayne@69: SSL_CTX_ctrl(ctx,SSL_CTRL_SET_CHAIN_CERT_STORE,0,(char *)(st)) jpayne@69: # define SSL_CTX_set1_chain_cert_store(ctx,st) \ jpayne@69: SSL_CTX_ctrl(ctx,SSL_CTRL_SET_CHAIN_CERT_STORE,1,(char *)(st)) jpayne@69: # define SSL_CTX_get0_chain_cert_store(ctx,st) \ jpayne@69: SSL_CTX_ctrl(ctx,SSL_CTRL_GET_CHAIN_CERT_STORE,0,(char *)(st)) jpayne@69: # define SSL_set0_chain(s,sk) \ jpayne@69: SSL_ctrl(s,SSL_CTRL_CHAIN,0,(char *)(sk)) jpayne@69: # define SSL_set1_chain(s,sk) \ jpayne@69: SSL_ctrl(s,SSL_CTRL_CHAIN,1,(char *)(sk)) jpayne@69: # define SSL_add0_chain_cert(s,x509) \ jpayne@69: SSL_ctrl(s,SSL_CTRL_CHAIN_CERT,0,(char *)(x509)) jpayne@69: # define SSL_add1_chain_cert(s,x509) \ jpayne@69: SSL_ctrl(s,SSL_CTRL_CHAIN_CERT,1,(char *)(x509)) jpayne@69: # define SSL_get0_chain_certs(s,px509) \ jpayne@69: SSL_ctrl(s,SSL_CTRL_GET_CHAIN_CERTS,0,px509) jpayne@69: # define SSL_clear_chain_certs(s) \ jpayne@69: SSL_set0_chain(s,NULL) jpayne@69: # define SSL_build_cert_chain(s, flags) \ jpayne@69: SSL_ctrl(s,SSL_CTRL_BUILD_CERT_CHAIN, flags, NULL) jpayne@69: # define SSL_select_current_cert(s,x509) \ jpayne@69: SSL_ctrl(s,SSL_CTRL_SELECT_CURRENT_CERT,0,(char *)(x509)) jpayne@69: # define SSL_set_current_cert(s,op) \ jpayne@69: SSL_ctrl(s,SSL_CTRL_SET_CURRENT_CERT, op, NULL) jpayne@69: # define SSL_set0_verify_cert_store(s,st) \ jpayne@69: SSL_ctrl(s,SSL_CTRL_SET_VERIFY_CERT_STORE,0,(char *)(st)) jpayne@69: # define SSL_set1_verify_cert_store(s,st) \ jpayne@69: SSL_ctrl(s,SSL_CTRL_SET_VERIFY_CERT_STORE,1,(char *)(st)) jpayne@69: #define SSL_get0_verify_cert_store(s,st) \ jpayne@69: SSL_ctrl(s,SSL_CTRL_GET_VERIFY_CERT_STORE,0,(char *)(st)) jpayne@69: # define SSL_set0_chain_cert_store(s,st) \ jpayne@69: SSL_ctrl(s,SSL_CTRL_SET_CHAIN_CERT_STORE,0,(char *)(st)) jpayne@69: # define SSL_set1_chain_cert_store(s,st) \ jpayne@69: SSL_ctrl(s,SSL_CTRL_SET_CHAIN_CERT_STORE,1,(char *)(st)) jpayne@69: #define SSL_get0_chain_cert_store(s,st) \ jpayne@69: SSL_ctrl(s,SSL_CTRL_GET_CHAIN_CERT_STORE,0,(char *)(st)) jpayne@69: # define SSL_get1_groups(s, glist) \ jpayne@69: SSL_ctrl(s,SSL_CTRL_GET_GROUPS,0,(int*)(glist)) jpayne@69: # define SSL_CTX_set1_groups(ctx, glist, glistlen) \ jpayne@69: SSL_CTX_ctrl(ctx,SSL_CTRL_SET_GROUPS,glistlen,(int *)(glist)) jpayne@69: # define SSL_CTX_set1_groups_list(ctx, s) \ jpayne@69: SSL_CTX_ctrl(ctx,SSL_CTRL_SET_GROUPS_LIST,0,(char *)(s)) jpayne@69: # define SSL_set1_groups(s, glist, glistlen) \ jpayne@69: SSL_ctrl(s,SSL_CTRL_SET_GROUPS,glistlen,(char *)(glist)) jpayne@69: # define SSL_set1_groups_list(s, str) \ jpayne@69: SSL_ctrl(s,SSL_CTRL_SET_GROUPS_LIST,0,(char *)(str)) jpayne@69: # define SSL_get_shared_group(s, n) \ jpayne@69: SSL_ctrl(s,SSL_CTRL_GET_SHARED_GROUP,n,NULL) jpayne@69: # define SSL_CTX_set1_sigalgs(ctx, slist, slistlen) \ jpayne@69: SSL_CTX_ctrl(ctx,SSL_CTRL_SET_SIGALGS,slistlen,(int *)(slist)) jpayne@69: # define SSL_CTX_set1_sigalgs_list(ctx, s) \ jpayne@69: SSL_CTX_ctrl(ctx,SSL_CTRL_SET_SIGALGS_LIST,0,(char *)(s)) jpayne@69: # define SSL_set1_sigalgs(s, slist, slistlen) \ jpayne@69: SSL_ctrl(s,SSL_CTRL_SET_SIGALGS,slistlen,(int *)(slist)) jpayne@69: # define SSL_set1_sigalgs_list(s, str) \ jpayne@69: SSL_ctrl(s,SSL_CTRL_SET_SIGALGS_LIST,0,(char *)(str)) jpayne@69: # define SSL_CTX_set1_client_sigalgs(ctx, slist, slistlen) \ jpayne@69: SSL_CTX_ctrl(ctx,SSL_CTRL_SET_CLIENT_SIGALGS,slistlen,(int *)(slist)) jpayne@69: # define SSL_CTX_set1_client_sigalgs_list(ctx, s) \ jpayne@69: SSL_CTX_ctrl(ctx,SSL_CTRL_SET_CLIENT_SIGALGS_LIST,0,(char *)(s)) jpayne@69: # define SSL_set1_client_sigalgs(s, slist, slistlen) \ jpayne@69: SSL_ctrl(s,SSL_CTRL_SET_CLIENT_SIGALGS,slistlen,(int *)(slist)) jpayne@69: # define SSL_set1_client_sigalgs_list(s, str) \ jpayne@69: SSL_ctrl(s,SSL_CTRL_SET_CLIENT_SIGALGS_LIST,0,(char *)(str)) jpayne@69: # define SSL_get0_certificate_types(s, clist) \ jpayne@69: SSL_ctrl(s, SSL_CTRL_GET_CLIENT_CERT_TYPES, 0, (char *)(clist)) jpayne@69: # define SSL_CTX_set1_client_certificate_types(ctx, clist, clistlen) \ jpayne@69: SSL_CTX_ctrl(ctx,SSL_CTRL_SET_CLIENT_CERT_TYPES,clistlen, \ jpayne@69: (char *)(clist)) jpayne@69: # define SSL_set1_client_certificate_types(s, clist, clistlen) \ jpayne@69: SSL_ctrl(s,SSL_CTRL_SET_CLIENT_CERT_TYPES,clistlen,(char *)(clist)) jpayne@69: # define SSL_get_signature_nid(s, pn) \ jpayne@69: SSL_ctrl(s,SSL_CTRL_GET_SIGNATURE_NID,0,pn) jpayne@69: # define SSL_get_peer_signature_nid(s, pn) \ jpayne@69: SSL_ctrl(s,SSL_CTRL_GET_PEER_SIGNATURE_NID,0,pn) jpayne@69: # define SSL_get_peer_tmp_key(s, pk) \ jpayne@69: SSL_ctrl(s,SSL_CTRL_GET_PEER_TMP_KEY,0,pk) jpayne@69: # define SSL_get_tmp_key(s, pk) \ jpayne@69: SSL_ctrl(s,SSL_CTRL_GET_TMP_KEY,0,pk) jpayne@69: # define SSL_get0_raw_cipherlist(s, plst) \ jpayne@69: SSL_ctrl(s,SSL_CTRL_GET_RAW_CIPHERLIST,0,plst) jpayne@69: # define SSL_get0_ec_point_formats(s, plst) \ jpayne@69: SSL_ctrl(s,SSL_CTRL_GET_EC_POINT_FORMATS,0,plst) jpayne@69: # define SSL_CTX_set_min_proto_version(ctx, version) \ jpayne@69: SSL_CTX_ctrl(ctx, SSL_CTRL_SET_MIN_PROTO_VERSION, version, NULL) jpayne@69: # define SSL_CTX_set_max_proto_version(ctx, version) \ jpayne@69: SSL_CTX_ctrl(ctx, SSL_CTRL_SET_MAX_PROTO_VERSION, version, NULL) jpayne@69: # define SSL_CTX_get_min_proto_version(ctx) \ jpayne@69: SSL_CTX_ctrl(ctx, SSL_CTRL_GET_MIN_PROTO_VERSION, 0, NULL) jpayne@69: # define SSL_CTX_get_max_proto_version(ctx) \ jpayne@69: SSL_CTX_ctrl(ctx, SSL_CTRL_GET_MAX_PROTO_VERSION, 0, NULL) jpayne@69: # define SSL_set_min_proto_version(s, version) \ jpayne@69: SSL_ctrl(s, SSL_CTRL_SET_MIN_PROTO_VERSION, version, NULL) jpayne@69: # define SSL_set_max_proto_version(s, version) \ jpayne@69: SSL_ctrl(s, SSL_CTRL_SET_MAX_PROTO_VERSION, version, NULL) jpayne@69: # define SSL_get_min_proto_version(s) \ jpayne@69: SSL_ctrl(s, SSL_CTRL_GET_MIN_PROTO_VERSION, 0, NULL) jpayne@69: # define SSL_get_max_proto_version(s) \ jpayne@69: SSL_ctrl(s, SSL_CTRL_GET_MAX_PROTO_VERSION, 0, NULL) jpayne@69: jpayne@69: /* Backwards compatibility, original 1.1.0 names */ jpayne@69: # define SSL_CTRL_GET_SERVER_TMP_KEY \ jpayne@69: SSL_CTRL_GET_PEER_TMP_KEY jpayne@69: # define SSL_get_server_tmp_key(s, pk) \ jpayne@69: SSL_get_peer_tmp_key(s, pk) jpayne@69: jpayne@69: /* jpayne@69: * The following symbol names are old and obsolete. They are kept jpayne@69: * for compatibility reasons only and should not be used anymore. jpayne@69: */ jpayne@69: # define SSL_CTRL_GET_CURVES SSL_CTRL_GET_GROUPS jpayne@69: # define SSL_CTRL_SET_CURVES SSL_CTRL_SET_GROUPS jpayne@69: # define SSL_CTRL_SET_CURVES_LIST SSL_CTRL_SET_GROUPS_LIST jpayne@69: # define SSL_CTRL_GET_SHARED_CURVE SSL_CTRL_GET_SHARED_GROUP jpayne@69: jpayne@69: # define SSL_get1_curves SSL_get1_groups jpayne@69: # define SSL_CTX_set1_curves SSL_CTX_set1_groups jpayne@69: # define SSL_CTX_set1_curves_list SSL_CTX_set1_groups_list jpayne@69: # define SSL_set1_curves SSL_set1_groups jpayne@69: # define SSL_set1_curves_list SSL_set1_groups_list jpayne@69: # define SSL_get_shared_curve SSL_get_shared_group jpayne@69: jpayne@69: jpayne@69: # if OPENSSL_API_COMPAT < 0x10100000L jpayne@69: /* Provide some compatibility macros for removed functionality. */ jpayne@69: # define SSL_CTX_need_tmp_RSA(ctx) 0 jpayne@69: # define SSL_CTX_set_tmp_rsa(ctx,rsa) 1 jpayne@69: # define SSL_need_tmp_RSA(ssl) 0 jpayne@69: # define SSL_set_tmp_rsa(ssl,rsa) 1 jpayne@69: # define SSL_CTX_set_ecdh_auto(dummy, onoff) ((onoff) != 0) jpayne@69: # define SSL_set_ecdh_auto(dummy, onoff) ((onoff) != 0) jpayne@69: /* jpayne@69: * We "pretend" to call the callback to avoid warnings about unused static jpayne@69: * functions. jpayne@69: */ jpayne@69: # define SSL_CTX_set_tmp_rsa_callback(ctx, cb) while(0) (cb)(NULL, 0, 0) jpayne@69: # define SSL_set_tmp_rsa_callback(ssl, cb) while(0) (cb)(NULL, 0, 0) jpayne@69: # endif jpayne@69: __owur const BIO_METHOD *BIO_f_ssl(void); jpayne@69: __owur BIO *BIO_new_ssl(SSL_CTX *ctx, int client); jpayne@69: __owur BIO *BIO_new_ssl_connect(SSL_CTX *ctx); jpayne@69: __owur BIO *BIO_new_buffer_ssl_connect(SSL_CTX *ctx); jpayne@69: __owur int BIO_ssl_copy_session_id(BIO *to, BIO *from); jpayne@69: void BIO_ssl_shutdown(BIO *ssl_bio); jpayne@69: jpayne@69: __owur int SSL_CTX_set_cipher_list(SSL_CTX *, const char *str); jpayne@69: __owur SSL_CTX *SSL_CTX_new(const SSL_METHOD *meth); jpayne@69: int SSL_CTX_up_ref(SSL_CTX *ctx); jpayne@69: void SSL_CTX_free(SSL_CTX *); jpayne@69: __owur long SSL_CTX_set_timeout(SSL_CTX *ctx, long t); jpayne@69: __owur long SSL_CTX_get_timeout(const SSL_CTX *ctx); jpayne@69: __owur X509_STORE *SSL_CTX_get_cert_store(const SSL_CTX *); jpayne@69: void SSL_CTX_set_cert_store(SSL_CTX *, X509_STORE *); jpayne@69: void SSL_CTX_set1_cert_store(SSL_CTX *, X509_STORE *); jpayne@69: __owur int SSL_want(const SSL *s); jpayne@69: __owur int SSL_clear(SSL *s); jpayne@69: jpayne@69: void SSL_CTX_flush_sessions(SSL_CTX *ctx, long tm); jpayne@69: jpayne@69: __owur const SSL_CIPHER *SSL_get_current_cipher(const SSL *s); jpayne@69: __owur const SSL_CIPHER *SSL_get_pending_cipher(const SSL *s); jpayne@69: __owur int SSL_CIPHER_get_bits(const SSL_CIPHER *c, int *alg_bits); jpayne@69: __owur const char *SSL_CIPHER_get_version(const SSL_CIPHER *c); jpayne@69: __owur const char *SSL_CIPHER_get_name(const SSL_CIPHER *c); jpayne@69: __owur const char *SSL_CIPHER_standard_name(const SSL_CIPHER *c); jpayne@69: __owur const char *OPENSSL_cipher_name(const char *rfc_name); jpayne@69: __owur uint32_t SSL_CIPHER_get_id(const SSL_CIPHER *c); jpayne@69: __owur uint16_t SSL_CIPHER_get_protocol_id(const SSL_CIPHER *c); jpayne@69: __owur int SSL_CIPHER_get_kx_nid(const SSL_CIPHER *c); jpayne@69: __owur int SSL_CIPHER_get_auth_nid(const SSL_CIPHER *c); jpayne@69: __owur const EVP_MD *SSL_CIPHER_get_handshake_digest(const SSL_CIPHER *c); jpayne@69: __owur int SSL_CIPHER_is_aead(const SSL_CIPHER *c); jpayne@69: jpayne@69: __owur int SSL_get_fd(const SSL *s); jpayne@69: __owur int SSL_get_rfd(const SSL *s); jpayne@69: __owur int SSL_get_wfd(const SSL *s); jpayne@69: __owur const char *SSL_get_cipher_list(const SSL *s, int n); jpayne@69: __owur char *SSL_get_shared_ciphers(const SSL *s, char *buf, int size); jpayne@69: __owur int SSL_get_read_ahead(const SSL *s); jpayne@69: __owur int SSL_pending(const SSL *s); jpayne@69: __owur int SSL_has_pending(const SSL *s); jpayne@69: # ifndef OPENSSL_NO_SOCK jpayne@69: __owur int SSL_set_fd(SSL *s, int fd); jpayne@69: __owur int SSL_set_rfd(SSL *s, int fd); jpayne@69: __owur int SSL_set_wfd(SSL *s, int fd); jpayne@69: # endif jpayne@69: void SSL_set0_rbio(SSL *s, BIO *rbio); jpayne@69: void SSL_set0_wbio(SSL *s, BIO *wbio); jpayne@69: void SSL_set_bio(SSL *s, BIO *rbio, BIO *wbio); jpayne@69: __owur BIO *SSL_get_rbio(const SSL *s); jpayne@69: __owur BIO *SSL_get_wbio(const SSL *s); jpayne@69: __owur int SSL_set_cipher_list(SSL *s, const char *str); jpayne@69: __owur int SSL_CTX_set_ciphersuites(SSL_CTX *ctx, const char *str); jpayne@69: __owur int SSL_set_ciphersuites(SSL *s, const char *str); jpayne@69: void SSL_set_read_ahead(SSL *s, int yes); jpayne@69: __owur int SSL_get_verify_mode(const SSL *s); jpayne@69: __owur int SSL_get_verify_depth(const SSL *s); jpayne@69: __owur SSL_verify_cb SSL_get_verify_callback(const SSL *s); jpayne@69: void SSL_set_verify(SSL *s, int mode, SSL_verify_cb callback); jpayne@69: void SSL_set_verify_depth(SSL *s, int depth); jpayne@69: void SSL_set_cert_cb(SSL *s, int (*cb) (SSL *ssl, void *arg), void *arg); jpayne@69: # ifndef OPENSSL_NO_RSA jpayne@69: __owur int SSL_use_RSAPrivateKey(SSL *ssl, RSA *rsa); jpayne@69: __owur int SSL_use_RSAPrivateKey_ASN1(SSL *ssl, const unsigned char *d, jpayne@69: long len); jpayne@69: # endif jpayne@69: __owur int SSL_use_PrivateKey(SSL *ssl, EVP_PKEY *pkey); jpayne@69: __owur int SSL_use_PrivateKey_ASN1(int pk, SSL *ssl, const unsigned char *d, jpayne@69: long len); jpayne@69: __owur int SSL_use_certificate(SSL *ssl, X509 *x); jpayne@69: __owur int SSL_use_certificate_ASN1(SSL *ssl, const unsigned char *d, int len); jpayne@69: __owur int SSL_use_cert_and_key(SSL *ssl, X509 *x509, EVP_PKEY *privatekey, jpayne@69: STACK_OF(X509) *chain, int override); jpayne@69: jpayne@69: jpayne@69: /* serverinfo file format versions */ jpayne@69: # define SSL_SERVERINFOV1 1 jpayne@69: # define SSL_SERVERINFOV2 2 jpayne@69: jpayne@69: /* Set serverinfo data for the current active cert. */ jpayne@69: __owur int SSL_CTX_use_serverinfo(SSL_CTX *ctx, const unsigned char *serverinfo, jpayne@69: size_t serverinfo_length); jpayne@69: __owur int SSL_CTX_use_serverinfo_ex(SSL_CTX *ctx, unsigned int version, jpayne@69: const unsigned char *serverinfo, jpayne@69: size_t serverinfo_length); jpayne@69: __owur int SSL_CTX_use_serverinfo_file(SSL_CTX *ctx, const char *file); jpayne@69: jpayne@69: #ifndef OPENSSL_NO_RSA jpayne@69: __owur int SSL_use_RSAPrivateKey_file(SSL *ssl, const char *file, int type); jpayne@69: #endif jpayne@69: jpayne@69: __owur int SSL_use_PrivateKey_file(SSL *ssl, const char *file, int type); jpayne@69: __owur int SSL_use_certificate_file(SSL *ssl, const char *file, int type); jpayne@69: jpayne@69: #ifndef OPENSSL_NO_RSA jpayne@69: __owur int SSL_CTX_use_RSAPrivateKey_file(SSL_CTX *ctx, const char *file, jpayne@69: int type); jpayne@69: #endif jpayne@69: __owur int SSL_CTX_use_PrivateKey_file(SSL_CTX *ctx, const char *file, jpayne@69: int type); jpayne@69: __owur int SSL_CTX_use_certificate_file(SSL_CTX *ctx, const char *file, jpayne@69: int type); jpayne@69: /* PEM type */ jpayne@69: __owur int SSL_CTX_use_certificate_chain_file(SSL_CTX *ctx, const char *file); jpayne@69: __owur int SSL_use_certificate_chain_file(SSL *ssl, const char *file); jpayne@69: __owur STACK_OF(X509_NAME) *SSL_load_client_CA_file(const char *file); jpayne@69: __owur int SSL_add_file_cert_subjects_to_stack(STACK_OF(X509_NAME) *stackCAs, jpayne@69: const char *file); jpayne@69: int SSL_add_dir_cert_subjects_to_stack(STACK_OF(X509_NAME) *stackCAs, jpayne@69: const char *dir); jpayne@69: jpayne@69: # if OPENSSL_API_COMPAT < 0x10100000L jpayne@69: # define SSL_load_error_strings() \ jpayne@69: OPENSSL_init_ssl(OPENSSL_INIT_LOAD_SSL_STRINGS \ jpayne@69: | OPENSSL_INIT_LOAD_CRYPTO_STRINGS, NULL) jpayne@69: # endif jpayne@69: jpayne@69: __owur const char *SSL_state_string(const SSL *s); jpayne@69: __owur const char *SSL_rstate_string(const SSL *s); jpayne@69: __owur const char *SSL_state_string_long(const SSL *s); jpayne@69: __owur const char *SSL_rstate_string_long(const SSL *s); jpayne@69: __owur long SSL_SESSION_get_time(const SSL_SESSION *s); jpayne@69: __owur long SSL_SESSION_set_time(SSL_SESSION *s, long t); jpayne@69: __owur long SSL_SESSION_get_timeout(const SSL_SESSION *s); jpayne@69: __owur long SSL_SESSION_set_timeout(SSL_SESSION *s, long t); jpayne@69: __owur int SSL_SESSION_get_protocol_version(const SSL_SESSION *s); jpayne@69: __owur int SSL_SESSION_set_protocol_version(SSL_SESSION *s, int version); jpayne@69: jpayne@69: __owur const char *SSL_SESSION_get0_hostname(const SSL_SESSION *s); jpayne@69: __owur int SSL_SESSION_set1_hostname(SSL_SESSION *s, const char *hostname); jpayne@69: void SSL_SESSION_get0_alpn_selected(const SSL_SESSION *s, jpayne@69: const unsigned char **alpn, jpayne@69: size_t *len); jpayne@69: __owur int SSL_SESSION_set1_alpn_selected(SSL_SESSION *s, jpayne@69: const unsigned char *alpn, jpayne@69: size_t len); jpayne@69: __owur const SSL_CIPHER *SSL_SESSION_get0_cipher(const SSL_SESSION *s); jpayne@69: __owur int SSL_SESSION_set_cipher(SSL_SESSION *s, const SSL_CIPHER *cipher); jpayne@69: __owur int SSL_SESSION_has_ticket(const SSL_SESSION *s); jpayne@69: __owur unsigned long SSL_SESSION_get_ticket_lifetime_hint(const SSL_SESSION *s); jpayne@69: void SSL_SESSION_get0_ticket(const SSL_SESSION *s, const unsigned char **tick, jpayne@69: size_t *len); jpayne@69: __owur uint32_t SSL_SESSION_get_max_early_data(const SSL_SESSION *s); jpayne@69: __owur int SSL_SESSION_set_max_early_data(SSL_SESSION *s, jpayne@69: uint32_t max_early_data); jpayne@69: __owur int SSL_copy_session_id(SSL *to, const SSL *from); jpayne@69: __owur X509 *SSL_SESSION_get0_peer(SSL_SESSION *s); jpayne@69: __owur int SSL_SESSION_set1_id_context(SSL_SESSION *s, jpayne@69: const unsigned char *sid_ctx, jpayne@69: unsigned int sid_ctx_len); jpayne@69: __owur int SSL_SESSION_set1_id(SSL_SESSION *s, const unsigned char *sid, jpayne@69: unsigned int sid_len); jpayne@69: __owur int SSL_SESSION_is_resumable(const SSL_SESSION *s); jpayne@69: jpayne@69: __owur SSL_SESSION *SSL_SESSION_new(void); jpayne@69: __owur SSL_SESSION *SSL_SESSION_dup(SSL_SESSION *src); jpayne@69: const unsigned char *SSL_SESSION_get_id(const SSL_SESSION *s, jpayne@69: unsigned int *len); jpayne@69: const unsigned char *SSL_SESSION_get0_id_context(const SSL_SESSION *s, jpayne@69: unsigned int *len); jpayne@69: __owur unsigned int SSL_SESSION_get_compress_id(const SSL_SESSION *s); jpayne@69: # ifndef OPENSSL_NO_STDIO jpayne@69: int SSL_SESSION_print_fp(FILE *fp, const SSL_SESSION *ses); jpayne@69: # endif jpayne@69: int SSL_SESSION_print(BIO *fp, const SSL_SESSION *ses); jpayne@69: int SSL_SESSION_print_keylog(BIO *bp, const SSL_SESSION *x); jpayne@69: int SSL_SESSION_up_ref(SSL_SESSION *ses); jpayne@69: void SSL_SESSION_free(SSL_SESSION *ses); jpayne@69: __owur int i2d_SSL_SESSION(SSL_SESSION *in, unsigned char **pp); jpayne@69: __owur int SSL_set_session(SSL *to, SSL_SESSION *session); jpayne@69: int SSL_CTX_add_session(SSL_CTX *ctx, SSL_SESSION *session); jpayne@69: int SSL_CTX_remove_session(SSL_CTX *ctx, SSL_SESSION *session); jpayne@69: __owur int SSL_CTX_set_generate_session_id(SSL_CTX *ctx, GEN_SESSION_CB cb); jpayne@69: __owur int SSL_set_generate_session_id(SSL *s, GEN_SESSION_CB cb); jpayne@69: __owur int SSL_has_matching_session_id(const SSL *s, jpayne@69: const unsigned char *id, jpayne@69: unsigned int id_len); jpayne@69: SSL_SESSION *d2i_SSL_SESSION(SSL_SESSION **a, const unsigned char **pp, jpayne@69: long length); jpayne@69: jpayne@69: # ifdef HEADER_X509_H jpayne@69: __owur X509 *SSL_get_peer_certificate(const SSL *s); jpayne@69: # endif jpayne@69: jpayne@69: __owur STACK_OF(X509) *SSL_get_peer_cert_chain(const SSL *s); jpayne@69: jpayne@69: __owur int SSL_CTX_get_verify_mode(const SSL_CTX *ctx); jpayne@69: __owur int SSL_CTX_get_verify_depth(const SSL_CTX *ctx); jpayne@69: __owur SSL_verify_cb SSL_CTX_get_verify_callback(const SSL_CTX *ctx); jpayne@69: void SSL_CTX_set_verify(SSL_CTX *ctx, int mode, SSL_verify_cb callback); jpayne@69: void SSL_CTX_set_verify_depth(SSL_CTX *ctx, int depth); jpayne@69: void SSL_CTX_set_cert_verify_callback(SSL_CTX *ctx, jpayne@69: int (*cb) (X509_STORE_CTX *, void *), jpayne@69: void *arg); jpayne@69: void SSL_CTX_set_cert_cb(SSL_CTX *c, int (*cb) (SSL *ssl, void *arg), jpayne@69: void *arg); jpayne@69: # ifndef OPENSSL_NO_RSA jpayne@69: __owur int SSL_CTX_use_RSAPrivateKey(SSL_CTX *ctx, RSA *rsa); jpayne@69: __owur int SSL_CTX_use_RSAPrivateKey_ASN1(SSL_CTX *ctx, const unsigned char *d, jpayne@69: long len); jpayne@69: # endif jpayne@69: __owur int SSL_CTX_use_PrivateKey(SSL_CTX *ctx, EVP_PKEY *pkey); jpayne@69: __owur int SSL_CTX_use_PrivateKey_ASN1(int pk, SSL_CTX *ctx, jpayne@69: const unsigned char *d, long len); jpayne@69: __owur int SSL_CTX_use_certificate(SSL_CTX *ctx, X509 *x); jpayne@69: __owur int SSL_CTX_use_certificate_ASN1(SSL_CTX *ctx, int len, jpayne@69: const unsigned char *d); jpayne@69: __owur int SSL_CTX_use_cert_and_key(SSL_CTX *ctx, X509 *x509, EVP_PKEY *privatekey, jpayne@69: STACK_OF(X509) *chain, int override); jpayne@69: jpayne@69: void SSL_CTX_set_default_passwd_cb(SSL_CTX *ctx, pem_password_cb *cb); jpayne@69: void SSL_CTX_set_default_passwd_cb_userdata(SSL_CTX *ctx, void *u); jpayne@69: pem_password_cb *SSL_CTX_get_default_passwd_cb(SSL_CTX *ctx); jpayne@69: void *SSL_CTX_get_default_passwd_cb_userdata(SSL_CTX *ctx); jpayne@69: void SSL_set_default_passwd_cb(SSL *s, pem_password_cb *cb); jpayne@69: void SSL_set_default_passwd_cb_userdata(SSL *s, void *u); jpayne@69: pem_password_cb *SSL_get_default_passwd_cb(SSL *s); jpayne@69: void *SSL_get_default_passwd_cb_userdata(SSL *s); jpayne@69: jpayne@69: __owur int SSL_CTX_check_private_key(const SSL_CTX *ctx); jpayne@69: __owur int SSL_check_private_key(const SSL *ctx); jpayne@69: jpayne@69: __owur int SSL_CTX_set_session_id_context(SSL_CTX *ctx, jpayne@69: const unsigned char *sid_ctx, jpayne@69: unsigned int sid_ctx_len); jpayne@69: jpayne@69: SSL *SSL_new(SSL_CTX *ctx); jpayne@69: int SSL_up_ref(SSL *s); jpayne@69: int SSL_is_dtls(const SSL *s); jpayne@69: __owur int SSL_set_session_id_context(SSL *ssl, const unsigned char *sid_ctx, jpayne@69: unsigned int sid_ctx_len); jpayne@69: jpayne@69: __owur int SSL_CTX_set_purpose(SSL_CTX *ctx, int purpose); jpayne@69: __owur int SSL_set_purpose(SSL *ssl, int purpose); jpayne@69: __owur int SSL_CTX_set_trust(SSL_CTX *ctx, int trust); jpayne@69: __owur int SSL_set_trust(SSL *ssl, int trust); jpayne@69: jpayne@69: __owur int SSL_set1_host(SSL *s, const char *hostname); jpayne@69: __owur int SSL_add1_host(SSL *s, const char *hostname); jpayne@69: __owur const char *SSL_get0_peername(SSL *s); jpayne@69: void SSL_set_hostflags(SSL *s, unsigned int flags); jpayne@69: jpayne@69: __owur int SSL_CTX_dane_enable(SSL_CTX *ctx); jpayne@69: __owur int SSL_CTX_dane_mtype_set(SSL_CTX *ctx, const EVP_MD *md, jpayne@69: uint8_t mtype, uint8_t ord); jpayne@69: __owur int SSL_dane_enable(SSL *s, const char *basedomain); jpayne@69: __owur int SSL_dane_tlsa_add(SSL *s, uint8_t usage, uint8_t selector, jpayne@69: uint8_t mtype, unsigned const char *data, size_t dlen); jpayne@69: __owur int SSL_get0_dane_authority(SSL *s, X509 **mcert, EVP_PKEY **mspki); jpayne@69: __owur int SSL_get0_dane_tlsa(SSL *s, uint8_t *usage, uint8_t *selector, jpayne@69: uint8_t *mtype, unsigned const char **data, jpayne@69: size_t *dlen); jpayne@69: /* jpayne@69: * Bridge opacity barrier between libcrypt and libssl, also needed to support jpayne@69: * offline testing in test/danetest.c jpayne@69: */ jpayne@69: SSL_DANE *SSL_get0_dane(SSL *ssl); jpayne@69: /* jpayne@69: * DANE flags jpayne@69: */ jpayne@69: unsigned long SSL_CTX_dane_set_flags(SSL_CTX *ctx, unsigned long flags); jpayne@69: unsigned long SSL_CTX_dane_clear_flags(SSL_CTX *ctx, unsigned long flags); jpayne@69: unsigned long SSL_dane_set_flags(SSL *ssl, unsigned long flags); jpayne@69: unsigned long SSL_dane_clear_flags(SSL *ssl, unsigned long flags); jpayne@69: jpayne@69: __owur int SSL_CTX_set1_param(SSL_CTX *ctx, X509_VERIFY_PARAM *vpm); jpayne@69: __owur int SSL_set1_param(SSL *ssl, X509_VERIFY_PARAM *vpm); jpayne@69: jpayne@69: __owur X509_VERIFY_PARAM *SSL_CTX_get0_param(SSL_CTX *ctx); jpayne@69: __owur X509_VERIFY_PARAM *SSL_get0_param(SSL *ssl); jpayne@69: jpayne@69: # ifndef OPENSSL_NO_SRP jpayne@69: int SSL_CTX_set_srp_username(SSL_CTX *ctx, char *name); jpayne@69: int SSL_CTX_set_srp_password(SSL_CTX *ctx, char *password); jpayne@69: int SSL_CTX_set_srp_strength(SSL_CTX *ctx, int strength); jpayne@69: int SSL_CTX_set_srp_client_pwd_callback(SSL_CTX *ctx, jpayne@69: char *(*cb) (SSL *, void *)); jpayne@69: int SSL_CTX_set_srp_verify_param_callback(SSL_CTX *ctx, jpayne@69: int (*cb) (SSL *, void *)); jpayne@69: int SSL_CTX_set_srp_username_callback(SSL_CTX *ctx, jpayne@69: int (*cb) (SSL *, int *, void *)); jpayne@69: int SSL_CTX_set_srp_cb_arg(SSL_CTX *ctx, void *arg); jpayne@69: jpayne@69: int SSL_set_srp_server_param(SSL *s, const BIGNUM *N, const BIGNUM *g, jpayne@69: BIGNUM *sa, BIGNUM *v, char *info); jpayne@69: int SSL_set_srp_server_param_pw(SSL *s, const char *user, const char *pass, jpayne@69: const char *grp); jpayne@69: jpayne@69: __owur BIGNUM *SSL_get_srp_g(SSL *s); jpayne@69: __owur BIGNUM *SSL_get_srp_N(SSL *s); jpayne@69: jpayne@69: __owur char *SSL_get_srp_username(SSL *s); jpayne@69: __owur char *SSL_get_srp_userinfo(SSL *s); jpayne@69: # endif jpayne@69: jpayne@69: /* jpayne@69: * ClientHello callback and helpers. jpayne@69: */ jpayne@69: jpayne@69: # define SSL_CLIENT_HELLO_SUCCESS 1 jpayne@69: # define SSL_CLIENT_HELLO_ERROR 0 jpayne@69: # define SSL_CLIENT_HELLO_RETRY (-1) jpayne@69: jpayne@69: typedef int (*SSL_client_hello_cb_fn) (SSL *s, int *al, void *arg); jpayne@69: void SSL_CTX_set_client_hello_cb(SSL_CTX *c, SSL_client_hello_cb_fn cb, jpayne@69: void *arg); jpayne@69: int SSL_client_hello_isv2(SSL *s); jpayne@69: unsigned int SSL_client_hello_get0_legacy_version(SSL *s); jpayne@69: size_t SSL_client_hello_get0_random(SSL *s, const unsigned char **out); jpayne@69: size_t SSL_client_hello_get0_session_id(SSL *s, const unsigned char **out); jpayne@69: size_t SSL_client_hello_get0_ciphers(SSL *s, const unsigned char **out); jpayne@69: size_t SSL_client_hello_get0_compression_methods(SSL *s, jpayne@69: const unsigned char **out); jpayne@69: int SSL_client_hello_get1_extensions_present(SSL *s, int **out, size_t *outlen); jpayne@69: int SSL_client_hello_get0_ext(SSL *s, unsigned int type, jpayne@69: const unsigned char **out, size_t *outlen); jpayne@69: jpayne@69: void SSL_certs_clear(SSL *s); jpayne@69: void SSL_free(SSL *ssl); jpayne@69: # ifdef OSSL_ASYNC_FD jpayne@69: /* jpayne@69: * Windows application developer has to include windows.h to use these. jpayne@69: */ jpayne@69: __owur int SSL_waiting_for_async(SSL *s); jpayne@69: __owur int SSL_get_all_async_fds(SSL *s, OSSL_ASYNC_FD *fds, size_t *numfds); jpayne@69: __owur int SSL_get_changed_async_fds(SSL *s, OSSL_ASYNC_FD *addfd, jpayne@69: size_t *numaddfds, OSSL_ASYNC_FD *delfd, jpayne@69: size_t *numdelfds); jpayne@69: # endif jpayne@69: __owur int SSL_accept(SSL *ssl); jpayne@69: __owur int SSL_stateless(SSL *s); jpayne@69: __owur int SSL_connect(SSL *ssl); jpayne@69: __owur int SSL_read(SSL *ssl, void *buf, int num); jpayne@69: __owur int SSL_read_ex(SSL *ssl, void *buf, size_t num, size_t *readbytes); jpayne@69: jpayne@69: # define SSL_READ_EARLY_DATA_ERROR 0 jpayne@69: # define SSL_READ_EARLY_DATA_SUCCESS 1 jpayne@69: # define SSL_READ_EARLY_DATA_FINISH 2 jpayne@69: jpayne@69: __owur int SSL_read_early_data(SSL *s, void *buf, size_t num, jpayne@69: size_t *readbytes); jpayne@69: __owur int SSL_peek(SSL *ssl, void *buf, int num); jpayne@69: __owur int SSL_peek_ex(SSL *ssl, void *buf, size_t num, size_t *readbytes); jpayne@69: __owur int SSL_write(SSL *ssl, const void *buf, int num); jpayne@69: __owur int SSL_write_ex(SSL *s, const void *buf, size_t num, size_t *written); jpayne@69: __owur int SSL_write_early_data(SSL *s, const void *buf, size_t num, jpayne@69: size_t *written); jpayne@69: long SSL_ctrl(SSL *ssl, int cmd, long larg, void *parg); jpayne@69: long SSL_callback_ctrl(SSL *, int, void (*)(void)); jpayne@69: long SSL_CTX_ctrl(SSL_CTX *ctx, int cmd, long larg, void *parg); jpayne@69: long SSL_CTX_callback_ctrl(SSL_CTX *, int, void (*)(void)); jpayne@69: jpayne@69: # define SSL_EARLY_DATA_NOT_SENT 0 jpayne@69: # define SSL_EARLY_DATA_REJECTED 1 jpayne@69: # define SSL_EARLY_DATA_ACCEPTED 2 jpayne@69: jpayne@69: __owur int SSL_get_early_data_status(const SSL *s); jpayne@69: jpayne@69: __owur int SSL_get_error(const SSL *s, int ret_code); jpayne@69: __owur const char *SSL_get_version(const SSL *s); jpayne@69: jpayne@69: /* This sets the 'default' SSL version that SSL_new() will create */ jpayne@69: __owur int SSL_CTX_set_ssl_version(SSL_CTX *ctx, const SSL_METHOD *meth); jpayne@69: jpayne@69: # ifndef OPENSSL_NO_SSL3_METHOD jpayne@69: DEPRECATEDIN_1_1_0(__owur const SSL_METHOD *SSLv3_method(void)) /* SSLv3 */ jpayne@69: DEPRECATEDIN_1_1_0(__owur const SSL_METHOD *SSLv3_server_method(void)) jpayne@69: DEPRECATEDIN_1_1_0(__owur const SSL_METHOD *SSLv3_client_method(void)) jpayne@69: # endif jpayne@69: jpayne@69: #define SSLv23_method TLS_method jpayne@69: #define SSLv23_server_method TLS_server_method jpayne@69: #define SSLv23_client_method TLS_client_method jpayne@69: jpayne@69: /* Negotiate highest available SSL/TLS version */ jpayne@69: __owur const SSL_METHOD *TLS_method(void); jpayne@69: __owur const SSL_METHOD *TLS_server_method(void); jpayne@69: __owur const SSL_METHOD *TLS_client_method(void); jpayne@69: jpayne@69: # ifndef OPENSSL_NO_TLS1_METHOD jpayne@69: DEPRECATEDIN_1_1_0(__owur const SSL_METHOD *TLSv1_method(void)) /* TLSv1.0 */ jpayne@69: DEPRECATEDIN_1_1_0(__owur const SSL_METHOD *TLSv1_server_method(void)) jpayne@69: DEPRECATEDIN_1_1_0(__owur const SSL_METHOD *TLSv1_client_method(void)) jpayne@69: # endif jpayne@69: jpayne@69: # ifndef OPENSSL_NO_TLS1_1_METHOD jpayne@69: DEPRECATEDIN_1_1_0(__owur const SSL_METHOD *TLSv1_1_method(void)) /* TLSv1.1 */ jpayne@69: DEPRECATEDIN_1_1_0(__owur const SSL_METHOD *TLSv1_1_server_method(void)) jpayne@69: DEPRECATEDIN_1_1_0(__owur const SSL_METHOD *TLSv1_1_client_method(void)) jpayne@69: # endif jpayne@69: jpayne@69: # ifndef OPENSSL_NO_TLS1_2_METHOD jpayne@69: DEPRECATEDIN_1_1_0(__owur const SSL_METHOD *TLSv1_2_method(void)) /* TLSv1.2 */ jpayne@69: DEPRECATEDIN_1_1_0(__owur const SSL_METHOD *TLSv1_2_server_method(void)) jpayne@69: DEPRECATEDIN_1_1_0(__owur const SSL_METHOD *TLSv1_2_client_method(void)) jpayne@69: # endif jpayne@69: jpayne@69: # ifndef OPENSSL_NO_DTLS1_METHOD jpayne@69: DEPRECATEDIN_1_1_0(__owur const SSL_METHOD *DTLSv1_method(void)) /* DTLSv1.0 */ jpayne@69: DEPRECATEDIN_1_1_0(__owur const SSL_METHOD *DTLSv1_server_method(void)) jpayne@69: DEPRECATEDIN_1_1_0(__owur const SSL_METHOD *DTLSv1_client_method(void)) jpayne@69: # endif jpayne@69: jpayne@69: # ifndef OPENSSL_NO_DTLS1_2_METHOD jpayne@69: /* DTLSv1.2 */ jpayne@69: DEPRECATEDIN_1_1_0(__owur const SSL_METHOD *DTLSv1_2_method(void)) jpayne@69: DEPRECATEDIN_1_1_0(__owur const SSL_METHOD *DTLSv1_2_server_method(void)) jpayne@69: DEPRECATEDIN_1_1_0(__owur const SSL_METHOD *DTLSv1_2_client_method(void)) jpayne@69: # endif jpayne@69: jpayne@69: __owur const SSL_METHOD *DTLS_method(void); /* DTLS 1.0 and 1.2 */ jpayne@69: __owur const SSL_METHOD *DTLS_server_method(void); /* DTLS 1.0 and 1.2 */ jpayne@69: __owur const SSL_METHOD *DTLS_client_method(void); /* DTLS 1.0 and 1.2 */ jpayne@69: jpayne@69: __owur size_t DTLS_get_data_mtu(const SSL *s); jpayne@69: jpayne@69: __owur STACK_OF(SSL_CIPHER) *SSL_get_ciphers(const SSL *s); jpayne@69: __owur STACK_OF(SSL_CIPHER) *SSL_CTX_get_ciphers(const SSL_CTX *ctx); jpayne@69: __owur STACK_OF(SSL_CIPHER) *SSL_get_client_ciphers(const SSL *s); jpayne@69: __owur STACK_OF(SSL_CIPHER) *SSL_get1_supported_ciphers(SSL *s); jpayne@69: jpayne@69: __owur int SSL_do_handshake(SSL *s); jpayne@69: int SSL_key_update(SSL *s, int updatetype); jpayne@69: int SSL_get_key_update_type(const SSL *s); jpayne@69: int SSL_renegotiate(SSL *s); jpayne@69: int SSL_renegotiate_abbreviated(SSL *s); jpayne@69: __owur int SSL_renegotiate_pending(const SSL *s); jpayne@69: int SSL_shutdown(SSL *s); jpayne@69: __owur int SSL_verify_client_post_handshake(SSL *s); jpayne@69: void SSL_CTX_set_post_handshake_auth(SSL_CTX *ctx, int val); jpayne@69: void SSL_set_post_handshake_auth(SSL *s, int val); jpayne@69: jpayne@69: __owur const SSL_METHOD *SSL_CTX_get_ssl_method(const SSL_CTX *ctx); jpayne@69: __owur const SSL_METHOD *SSL_get_ssl_method(const SSL *s); jpayne@69: __owur int SSL_set_ssl_method(SSL *s, const SSL_METHOD *method); jpayne@69: __owur const char *SSL_alert_type_string_long(int value); jpayne@69: __owur const char *SSL_alert_type_string(int value); jpayne@69: __owur const char *SSL_alert_desc_string_long(int value); jpayne@69: __owur const char *SSL_alert_desc_string(int value); jpayne@69: jpayne@69: void SSL_set0_CA_list(SSL *s, STACK_OF(X509_NAME) *name_list); jpayne@69: void SSL_CTX_set0_CA_list(SSL_CTX *ctx, STACK_OF(X509_NAME) *name_list); jpayne@69: __owur const STACK_OF(X509_NAME) *SSL_get0_CA_list(const SSL *s); jpayne@69: __owur const STACK_OF(X509_NAME) *SSL_CTX_get0_CA_list(const SSL_CTX *ctx); jpayne@69: __owur int SSL_add1_to_CA_list(SSL *ssl, const X509 *x); jpayne@69: __owur int SSL_CTX_add1_to_CA_list(SSL_CTX *ctx, const X509 *x); jpayne@69: __owur const STACK_OF(X509_NAME) *SSL_get0_peer_CA_list(const SSL *s); jpayne@69: jpayne@69: void SSL_set_client_CA_list(SSL *s, STACK_OF(X509_NAME) *name_list); jpayne@69: void SSL_CTX_set_client_CA_list(SSL_CTX *ctx, STACK_OF(X509_NAME) *name_list); jpayne@69: __owur STACK_OF(X509_NAME) *SSL_get_client_CA_list(const SSL *s); jpayne@69: __owur STACK_OF(X509_NAME) *SSL_CTX_get_client_CA_list(const SSL_CTX *s); jpayne@69: __owur int SSL_add_client_CA(SSL *ssl, X509 *x); jpayne@69: __owur int SSL_CTX_add_client_CA(SSL_CTX *ctx, X509 *x); jpayne@69: jpayne@69: void SSL_set_connect_state(SSL *s); jpayne@69: void SSL_set_accept_state(SSL *s); jpayne@69: jpayne@69: __owur long SSL_get_default_timeout(const SSL *s); jpayne@69: jpayne@69: # if OPENSSL_API_COMPAT < 0x10100000L jpayne@69: # define SSL_library_init() OPENSSL_init_ssl(0, NULL) jpayne@69: # endif jpayne@69: jpayne@69: __owur char *SSL_CIPHER_description(const SSL_CIPHER *, char *buf, int size); jpayne@69: __owur STACK_OF(X509_NAME) *SSL_dup_CA_list(const STACK_OF(X509_NAME) *sk); jpayne@69: jpayne@69: __owur SSL *SSL_dup(SSL *ssl); jpayne@69: jpayne@69: __owur X509 *SSL_get_certificate(const SSL *ssl); jpayne@69: /* jpayne@69: * EVP_PKEY jpayne@69: */ jpayne@69: struct evp_pkey_st *SSL_get_privatekey(const SSL *ssl); jpayne@69: jpayne@69: __owur X509 *SSL_CTX_get0_certificate(const SSL_CTX *ctx); jpayne@69: __owur EVP_PKEY *SSL_CTX_get0_privatekey(const SSL_CTX *ctx); jpayne@69: jpayne@69: void SSL_CTX_set_quiet_shutdown(SSL_CTX *ctx, int mode); jpayne@69: __owur int SSL_CTX_get_quiet_shutdown(const SSL_CTX *ctx); jpayne@69: void SSL_set_quiet_shutdown(SSL *ssl, int mode); jpayne@69: __owur int SSL_get_quiet_shutdown(const SSL *ssl); jpayne@69: void SSL_set_shutdown(SSL *ssl, int mode); jpayne@69: __owur int SSL_get_shutdown(const SSL *ssl); jpayne@69: __owur int SSL_version(const SSL *ssl); jpayne@69: __owur int SSL_client_version(const SSL *s); jpayne@69: __owur int SSL_CTX_set_default_verify_paths(SSL_CTX *ctx); jpayne@69: __owur int SSL_CTX_set_default_verify_dir(SSL_CTX *ctx); jpayne@69: __owur int SSL_CTX_set_default_verify_file(SSL_CTX *ctx); jpayne@69: __owur int SSL_CTX_load_verify_locations(SSL_CTX *ctx, const char *CAfile, jpayne@69: const char *CApath); jpayne@69: # define SSL_get0_session SSL_get_session/* just peek at pointer */ jpayne@69: __owur SSL_SESSION *SSL_get_session(const SSL *ssl); jpayne@69: __owur SSL_SESSION *SSL_get1_session(SSL *ssl); /* obtain a reference count */ jpayne@69: __owur SSL_CTX *SSL_get_SSL_CTX(const SSL *ssl); jpayne@69: SSL_CTX *SSL_set_SSL_CTX(SSL *ssl, SSL_CTX *ctx); jpayne@69: void SSL_set_info_callback(SSL *ssl, jpayne@69: void (*cb) (const SSL *ssl, int type, int val)); jpayne@69: void (*SSL_get_info_callback(const SSL *ssl)) (const SSL *ssl, int type, jpayne@69: int val); jpayne@69: __owur OSSL_HANDSHAKE_STATE SSL_get_state(const SSL *ssl); jpayne@69: jpayne@69: void SSL_set_verify_result(SSL *ssl, long v); jpayne@69: __owur long SSL_get_verify_result(const SSL *ssl); jpayne@69: __owur STACK_OF(X509) *SSL_get0_verified_chain(const SSL *s); jpayne@69: jpayne@69: __owur size_t SSL_get_client_random(const SSL *ssl, unsigned char *out, jpayne@69: size_t outlen); jpayne@69: __owur size_t SSL_get_server_random(const SSL *ssl, unsigned char *out, jpayne@69: size_t outlen); jpayne@69: __owur size_t SSL_SESSION_get_master_key(const SSL_SESSION *sess, jpayne@69: unsigned char *out, size_t outlen); jpayne@69: __owur int SSL_SESSION_set1_master_key(SSL_SESSION *sess, jpayne@69: const unsigned char *in, size_t len); jpayne@69: uint8_t SSL_SESSION_get_max_fragment_length(const SSL_SESSION *sess); jpayne@69: jpayne@69: #define SSL_get_ex_new_index(l, p, newf, dupf, freef) \ jpayne@69: CRYPTO_get_ex_new_index(CRYPTO_EX_INDEX_SSL, l, p, newf, dupf, freef) jpayne@69: __owur int SSL_set_ex_data(SSL *ssl, int idx, void *data); jpayne@69: void *SSL_get_ex_data(const SSL *ssl, int idx); jpayne@69: #define SSL_SESSION_get_ex_new_index(l, p, newf, dupf, freef) \ jpayne@69: CRYPTO_get_ex_new_index(CRYPTO_EX_INDEX_SSL_SESSION, l, p, newf, dupf, freef) jpayne@69: __owur int SSL_SESSION_set_ex_data(SSL_SESSION *ss, int idx, void *data); jpayne@69: void *SSL_SESSION_get_ex_data(const SSL_SESSION *ss, int idx); jpayne@69: #define SSL_CTX_get_ex_new_index(l, p, newf, dupf, freef) \ jpayne@69: CRYPTO_get_ex_new_index(CRYPTO_EX_INDEX_SSL_CTX, l, p, newf, dupf, freef) jpayne@69: __owur int SSL_CTX_set_ex_data(SSL_CTX *ssl, int idx, void *data); jpayne@69: void *SSL_CTX_get_ex_data(const SSL_CTX *ssl, int idx); jpayne@69: jpayne@69: __owur int SSL_get_ex_data_X509_STORE_CTX_idx(void); jpayne@69: jpayne@69: # define SSL_CTX_sess_set_cache_size(ctx,t) \ jpayne@69: SSL_CTX_ctrl(ctx,SSL_CTRL_SET_SESS_CACHE_SIZE,t,NULL) jpayne@69: # define SSL_CTX_sess_get_cache_size(ctx) \ jpayne@69: SSL_CTX_ctrl(ctx,SSL_CTRL_GET_SESS_CACHE_SIZE,0,NULL) jpayne@69: # define SSL_CTX_set_session_cache_mode(ctx,m) \ jpayne@69: SSL_CTX_ctrl(ctx,SSL_CTRL_SET_SESS_CACHE_MODE,m,NULL) jpayne@69: # define SSL_CTX_get_session_cache_mode(ctx) \ jpayne@69: SSL_CTX_ctrl(ctx,SSL_CTRL_GET_SESS_CACHE_MODE,0,NULL) jpayne@69: jpayne@69: # define SSL_CTX_get_default_read_ahead(ctx) SSL_CTX_get_read_ahead(ctx) jpayne@69: # define SSL_CTX_set_default_read_ahead(ctx,m) SSL_CTX_set_read_ahead(ctx,m) jpayne@69: # define SSL_CTX_get_read_ahead(ctx) \ jpayne@69: SSL_CTX_ctrl(ctx,SSL_CTRL_GET_READ_AHEAD,0,NULL) jpayne@69: # define SSL_CTX_set_read_ahead(ctx,m) \ jpayne@69: SSL_CTX_ctrl(ctx,SSL_CTRL_SET_READ_AHEAD,m,NULL) jpayne@69: # define SSL_CTX_get_max_cert_list(ctx) \ jpayne@69: SSL_CTX_ctrl(ctx,SSL_CTRL_GET_MAX_CERT_LIST,0,NULL) jpayne@69: # define SSL_CTX_set_max_cert_list(ctx,m) \ jpayne@69: SSL_CTX_ctrl(ctx,SSL_CTRL_SET_MAX_CERT_LIST,m,NULL) jpayne@69: # define SSL_get_max_cert_list(ssl) \ jpayne@69: SSL_ctrl(ssl,SSL_CTRL_GET_MAX_CERT_LIST,0,NULL) jpayne@69: # define SSL_set_max_cert_list(ssl,m) \ jpayne@69: SSL_ctrl(ssl,SSL_CTRL_SET_MAX_CERT_LIST,m,NULL) jpayne@69: jpayne@69: # define SSL_CTX_set_max_send_fragment(ctx,m) \ jpayne@69: SSL_CTX_ctrl(ctx,SSL_CTRL_SET_MAX_SEND_FRAGMENT,m,NULL) jpayne@69: # define SSL_set_max_send_fragment(ssl,m) \ jpayne@69: SSL_ctrl(ssl,SSL_CTRL_SET_MAX_SEND_FRAGMENT,m,NULL) jpayne@69: # define SSL_CTX_set_split_send_fragment(ctx,m) \ jpayne@69: SSL_CTX_ctrl(ctx,SSL_CTRL_SET_SPLIT_SEND_FRAGMENT,m,NULL) jpayne@69: # define SSL_set_split_send_fragment(ssl,m) \ jpayne@69: SSL_ctrl(ssl,SSL_CTRL_SET_SPLIT_SEND_FRAGMENT,m,NULL) jpayne@69: # define SSL_CTX_set_max_pipelines(ctx,m) \ jpayne@69: SSL_CTX_ctrl(ctx,SSL_CTRL_SET_MAX_PIPELINES,m,NULL) jpayne@69: # define SSL_set_max_pipelines(ssl,m) \ jpayne@69: SSL_ctrl(ssl,SSL_CTRL_SET_MAX_PIPELINES,m,NULL) jpayne@69: jpayne@69: void SSL_CTX_set_default_read_buffer_len(SSL_CTX *ctx, size_t len); jpayne@69: void SSL_set_default_read_buffer_len(SSL *s, size_t len); jpayne@69: jpayne@69: # ifndef OPENSSL_NO_DH jpayne@69: /* NB: the |keylength| is only applicable when is_export is true */ jpayne@69: void SSL_CTX_set_tmp_dh_callback(SSL_CTX *ctx, jpayne@69: DH *(*dh) (SSL *ssl, int is_export, jpayne@69: int keylength)); jpayne@69: void SSL_set_tmp_dh_callback(SSL *ssl, jpayne@69: DH *(*dh) (SSL *ssl, int is_export, jpayne@69: int keylength)); jpayne@69: # endif jpayne@69: jpayne@69: __owur const COMP_METHOD *SSL_get_current_compression(const SSL *s); jpayne@69: __owur const COMP_METHOD *SSL_get_current_expansion(const SSL *s); jpayne@69: __owur const char *SSL_COMP_get_name(const COMP_METHOD *comp); jpayne@69: __owur const char *SSL_COMP_get0_name(const SSL_COMP *comp); jpayne@69: __owur int SSL_COMP_get_id(const SSL_COMP *comp); jpayne@69: STACK_OF(SSL_COMP) *SSL_COMP_get_compression_methods(void); jpayne@69: __owur STACK_OF(SSL_COMP) *SSL_COMP_set0_compression_methods(STACK_OF(SSL_COMP) jpayne@69: *meths); jpayne@69: # if OPENSSL_API_COMPAT < 0x10100000L jpayne@69: # define SSL_COMP_free_compression_methods() while(0) continue jpayne@69: # endif jpayne@69: __owur int SSL_COMP_add_compression_method(int id, COMP_METHOD *cm); jpayne@69: jpayne@69: const SSL_CIPHER *SSL_CIPHER_find(SSL *ssl, const unsigned char *ptr); jpayne@69: int SSL_CIPHER_get_cipher_nid(const SSL_CIPHER *c); jpayne@69: int SSL_CIPHER_get_digest_nid(const SSL_CIPHER *c); jpayne@69: int SSL_bytes_to_cipher_list(SSL *s, const unsigned char *bytes, size_t len, jpayne@69: int isv2format, STACK_OF(SSL_CIPHER) **sk, jpayne@69: STACK_OF(SSL_CIPHER) **scsvs); jpayne@69: jpayne@69: /* TLS extensions functions */ jpayne@69: __owur int SSL_set_session_ticket_ext(SSL *s, void *ext_data, int ext_len); jpayne@69: jpayne@69: __owur int SSL_set_session_ticket_ext_cb(SSL *s, jpayne@69: tls_session_ticket_ext_cb_fn cb, jpayne@69: void *arg); jpayne@69: jpayne@69: /* Pre-shared secret session resumption functions */ jpayne@69: __owur int SSL_set_session_secret_cb(SSL *s, jpayne@69: tls_session_secret_cb_fn session_secret_cb, jpayne@69: void *arg); jpayne@69: jpayne@69: void SSL_CTX_set_not_resumable_session_callback(SSL_CTX *ctx, jpayne@69: int (*cb) (SSL *ssl, jpayne@69: int jpayne@69: is_forward_secure)); jpayne@69: jpayne@69: void SSL_set_not_resumable_session_callback(SSL *ssl, jpayne@69: int (*cb) (SSL *ssl, jpayne@69: int is_forward_secure)); jpayne@69: jpayne@69: void SSL_CTX_set_record_padding_callback(SSL_CTX *ctx, jpayne@69: size_t (*cb) (SSL *ssl, int type, jpayne@69: size_t len, void *arg)); jpayne@69: void SSL_CTX_set_record_padding_callback_arg(SSL_CTX *ctx, void *arg); jpayne@69: void *SSL_CTX_get_record_padding_callback_arg(const SSL_CTX *ctx); jpayne@69: int SSL_CTX_set_block_padding(SSL_CTX *ctx, size_t block_size); jpayne@69: jpayne@69: void SSL_set_record_padding_callback(SSL *ssl, jpayne@69: size_t (*cb) (SSL *ssl, int type, jpayne@69: size_t len, void *arg)); jpayne@69: void SSL_set_record_padding_callback_arg(SSL *ssl, void *arg); jpayne@69: void *SSL_get_record_padding_callback_arg(const SSL *ssl); jpayne@69: int SSL_set_block_padding(SSL *ssl, size_t block_size); jpayne@69: jpayne@69: int SSL_set_num_tickets(SSL *s, size_t num_tickets); jpayne@69: size_t SSL_get_num_tickets(const SSL *s); jpayne@69: int SSL_CTX_set_num_tickets(SSL_CTX *ctx, size_t num_tickets); jpayne@69: size_t SSL_CTX_get_num_tickets(const SSL_CTX *ctx); jpayne@69: jpayne@69: # if OPENSSL_API_COMPAT < 0x10100000L jpayne@69: # define SSL_cache_hit(s) SSL_session_reused(s) jpayne@69: # endif jpayne@69: jpayne@69: __owur int SSL_session_reused(const SSL *s); jpayne@69: __owur int SSL_is_server(const SSL *s); jpayne@69: jpayne@69: __owur __owur SSL_CONF_CTX *SSL_CONF_CTX_new(void); jpayne@69: int SSL_CONF_CTX_finish(SSL_CONF_CTX *cctx); jpayne@69: void SSL_CONF_CTX_free(SSL_CONF_CTX *cctx); jpayne@69: unsigned int SSL_CONF_CTX_set_flags(SSL_CONF_CTX *cctx, unsigned int flags); jpayne@69: __owur unsigned int SSL_CONF_CTX_clear_flags(SSL_CONF_CTX *cctx, jpayne@69: unsigned int flags); jpayne@69: __owur int SSL_CONF_CTX_set1_prefix(SSL_CONF_CTX *cctx, const char *pre); jpayne@69: jpayne@69: void SSL_CONF_CTX_set_ssl(SSL_CONF_CTX *cctx, SSL *ssl); jpayne@69: void SSL_CONF_CTX_set_ssl_ctx(SSL_CONF_CTX *cctx, SSL_CTX *ctx); jpayne@69: jpayne@69: __owur int SSL_CONF_cmd(SSL_CONF_CTX *cctx, const char *cmd, const char *value); jpayne@69: __owur int SSL_CONF_cmd_argv(SSL_CONF_CTX *cctx, int *pargc, char ***pargv); jpayne@69: __owur int SSL_CONF_cmd_value_type(SSL_CONF_CTX *cctx, const char *cmd); jpayne@69: jpayne@69: void SSL_add_ssl_module(void); jpayne@69: int SSL_config(SSL *s, const char *name); jpayne@69: int SSL_CTX_config(SSL_CTX *ctx, const char *name); jpayne@69: jpayne@69: # ifndef OPENSSL_NO_SSL_TRACE jpayne@69: void SSL_trace(int write_p, int version, int content_type, jpayne@69: const void *buf, size_t len, SSL *ssl, void *arg); jpayne@69: # endif jpayne@69: jpayne@69: # ifndef OPENSSL_NO_SOCK jpayne@69: int DTLSv1_listen(SSL *s, BIO_ADDR *client); jpayne@69: # endif jpayne@69: jpayne@69: # ifndef OPENSSL_NO_CT jpayne@69: jpayne@69: /* jpayne@69: * A callback for verifying that the received SCTs are sufficient. jpayne@69: * Expected to return 1 if they are sufficient, otherwise 0. jpayne@69: * May return a negative integer if an error occurs. jpayne@69: * A connection should be aborted if the SCTs are deemed insufficient. jpayne@69: */ jpayne@69: typedef int (*ssl_ct_validation_cb)(const CT_POLICY_EVAL_CTX *ctx, jpayne@69: const STACK_OF(SCT) *scts, void *arg); jpayne@69: jpayne@69: /* jpayne@69: * Sets a |callback| that is invoked upon receipt of ServerHelloDone to validate jpayne@69: * the received SCTs. jpayne@69: * If the callback returns a non-positive result, the connection is terminated. jpayne@69: * Call this function before beginning a handshake. jpayne@69: * If a NULL |callback| is provided, SCT validation is disabled. jpayne@69: * |arg| is arbitrary userdata that will be passed to the callback whenever it jpayne@69: * is invoked. Ownership of |arg| remains with the caller. jpayne@69: * jpayne@69: * NOTE: A side-effect of setting a CT callback is that an OCSP stapled response jpayne@69: * will be requested. jpayne@69: */ jpayne@69: int SSL_set_ct_validation_callback(SSL *s, ssl_ct_validation_cb callback, jpayne@69: void *arg); jpayne@69: int SSL_CTX_set_ct_validation_callback(SSL_CTX *ctx, jpayne@69: ssl_ct_validation_cb callback, jpayne@69: void *arg); jpayne@69: #define SSL_disable_ct(s) \ jpayne@69: ((void) SSL_set_validation_callback((s), NULL, NULL)) jpayne@69: #define SSL_CTX_disable_ct(ctx) \ jpayne@69: ((void) SSL_CTX_set_validation_callback((ctx), NULL, NULL)) jpayne@69: jpayne@69: /* jpayne@69: * The validation type enumerates the available behaviours of the built-in SSL jpayne@69: * CT validation callback selected via SSL_enable_ct() and SSL_CTX_enable_ct(). jpayne@69: * The underlying callback is a static function in libssl. jpayne@69: */ jpayne@69: enum { jpayne@69: SSL_CT_VALIDATION_PERMISSIVE = 0, jpayne@69: SSL_CT_VALIDATION_STRICT jpayne@69: }; jpayne@69: jpayne@69: /* jpayne@69: * Enable CT by setting up a callback that implements one of the built-in jpayne@69: * validation variants. The SSL_CT_VALIDATION_PERMISSIVE variant always jpayne@69: * continues the handshake, the application can make appropriate decisions at jpayne@69: * handshake completion. The SSL_CT_VALIDATION_STRICT variant requires at jpayne@69: * least one valid SCT, or else handshake termination will be requested. The jpayne@69: * handshake may continue anyway if SSL_VERIFY_NONE is in effect. jpayne@69: */ jpayne@69: int SSL_enable_ct(SSL *s, int validation_mode); jpayne@69: int SSL_CTX_enable_ct(SSL_CTX *ctx, int validation_mode); jpayne@69: jpayne@69: /* jpayne@69: * Report whether a non-NULL callback is enabled. jpayne@69: */ jpayne@69: int SSL_ct_is_enabled(const SSL *s); jpayne@69: int SSL_CTX_ct_is_enabled(const SSL_CTX *ctx); jpayne@69: jpayne@69: /* Gets the SCTs received from a connection */ jpayne@69: const STACK_OF(SCT) *SSL_get0_peer_scts(SSL *s); jpayne@69: jpayne@69: /* jpayne@69: * Loads the CT log list from the default location. jpayne@69: * If a CTLOG_STORE has previously been set using SSL_CTX_set_ctlog_store, jpayne@69: * the log information loaded from this file will be appended to the jpayne@69: * CTLOG_STORE. jpayne@69: * Returns 1 on success, 0 otherwise. jpayne@69: */ jpayne@69: int SSL_CTX_set_default_ctlog_list_file(SSL_CTX *ctx); jpayne@69: jpayne@69: /* jpayne@69: * Loads the CT log list from the specified file path. jpayne@69: * If a CTLOG_STORE has previously been set using SSL_CTX_set_ctlog_store, jpayne@69: * the log information loaded from this file will be appended to the jpayne@69: * CTLOG_STORE. jpayne@69: * Returns 1 on success, 0 otherwise. jpayne@69: */ jpayne@69: int SSL_CTX_set_ctlog_list_file(SSL_CTX *ctx, const char *path); jpayne@69: jpayne@69: /* jpayne@69: * Sets the CT log list used by all SSL connections created from this SSL_CTX. jpayne@69: * Ownership of the CTLOG_STORE is transferred to the SSL_CTX. jpayne@69: */ jpayne@69: void SSL_CTX_set0_ctlog_store(SSL_CTX *ctx, CTLOG_STORE *logs); jpayne@69: jpayne@69: /* jpayne@69: * Gets the CT log list used by all SSL connections created from this SSL_CTX. jpayne@69: * This will be NULL unless one of the following functions has been called: jpayne@69: * - SSL_CTX_set_default_ctlog_list_file jpayne@69: * - SSL_CTX_set_ctlog_list_file jpayne@69: * - SSL_CTX_set_ctlog_store jpayne@69: */ jpayne@69: const CTLOG_STORE *SSL_CTX_get0_ctlog_store(const SSL_CTX *ctx); jpayne@69: jpayne@69: # endif /* OPENSSL_NO_CT */ jpayne@69: jpayne@69: /* What the "other" parameter contains in security callback */ jpayne@69: /* Mask for type */ jpayne@69: # define SSL_SECOP_OTHER_TYPE 0xffff0000 jpayne@69: # define SSL_SECOP_OTHER_NONE 0 jpayne@69: # define SSL_SECOP_OTHER_CIPHER (1 << 16) jpayne@69: # define SSL_SECOP_OTHER_CURVE (2 << 16) jpayne@69: # define SSL_SECOP_OTHER_DH (3 << 16) jpayne@69: # define SSL_SECOP_OTHER_PKEY (4 << 16) jpayne@69: # define SSL_SECOP_OTHER_SIGALG (5 << 16) jpayne@69: # define SSL_SECOP_OTHER_CERT (6 << 16) jpayne@69: jpayne@69: /* Indicated operation refers to peer key or certificate */ jpayne@69: # define SSL_SECOP_PEER 0x1000 jpayne@69: jpayne@69: /* Values for "op" parameter in security callback */ jpayne@69: jpayne@69: /* Called to filter ciphers */ jpayne@69: /* Ciphers client supports */ jpayne@69: # define SSL_SECOP_CIPHER_SUPPORTED (1 | SSL_SECOP_OTHER_CIPHER) jpayne@69: /* Cipher shared by client/server */ jpayne@69: # define SSL_SECOP_CIPHER_SHARED (2 | SSL_SECOP_OTHER_CIPHER) jpayne@69: /* Sanity check of cipher server selects */ jpayne@69: # define SSL_SECOP_CIPHER_CHECK (3 | SSL_SECOP_OTHER_CIPHER) jpayne@69: /* Curves supported by client */ jpayne@69: # define SSL_SECOP_CURVE_SUPPORTED (4 | SSL_SECOP_OTHER_CURVE) jpayne@69: /* Curves shared by client/server */ jpayne@69: # define SSL_SECOP_CURVE_SHARED (5 | SSL_SECOP_OTHER_CURVE) jpayne@69: /* Sanity check of curve server selects */ jpayne@69: # define SSL_SECOP_CURVE_CHECK (6 | SSL_SECOP_OTHER_CURVE) jpayne@69: /* Temporary DH key */ jpayne@69: # define SSL_SECOP_TMP_DH (7 | SSL_SECOP_OTHER_PKEY) jpayne@69: /* SSL/TLS version */ jpayne@69: # define SSL_SECOP_VERSION (9 | SSL_SECOP_OTHER_NONE) jpayne@69: /* Session tickets */ jpayne@69: # define SSL_SECOP_TICKET (10 | SSL_SECOP_OTHER_NONE) jpayne@69: /* Supported signature algorithms sent to peer */ jpayne@69: # define SSL_SECOP_SIGALG_SUPPORTED (11 | SSL_SECOP_OTHER_SIGALG) jpayne@69: /* Shared signature algorithm */ jpayne@69: # define SSL_SECOP_SIGALG_SHARED (12 | SSL_SECOP_OTHER_SIGALG) jpayne@69: /* Sanity check signature algorithm allowed */ jpayne@69: # define SSL_SECOP_SIGALG_CHECK (13 | SSL_SECOP_OTHER_SIGALG) jpayne@69: /* Used to get mask of supported public key signature algorithms */ jpayne@69: # define SSL_SECOP_SIGALG_MASK (14 | SSL_SECOP_OTHER_SIGALG) jpayne@69: /* Use to see if compression is allowed */ jpayne@69: # define SSL_SECOP_COMPRESSION (15 | SSL_SECOP_OTHER_NONE) jpayne@69: /* EE key in certificate */ jpayne@69: # define SSL_SECOP_EE_KEY (16 | SSL_SECOP_OTHER_CERT) jpayne@69: /* CA key in certificate */ jpayne@69: # define SSL_SECOP_CA_KEY (17 | SSL_SECOP_OTHER_CERT) jpayne@69: /* CA digest algorithm in certificate */ jpayne@69: # define SSL_SECOP_CA_MD (18 | SSL_SECOP_OTHER_CERT) jpayne@69: /* Peer EE key in certificate */ jpayne@69: # define SSL_SECOP_PEER_EE_KEY (SSL_SECOP_EE_KEY | SSL_SECOP_PEER) jpayne@69: /* Peer CA key in certificate */ jpayne@69: # define SSL_SECOP_PEER_CA_KEY (SSL_SECOP_CA_KEY | SSL_SECOP_PEER) jpayne@69: /* Peer CA digest algorithm in certificate */ jpayne@69: # define SSL_SECOP_PEER_CA_MD (SSL_SECOP_CA_MD | SSL_SECOP_PEER) jpayne@69: jpayne@69: void SSL_set_security_level(SSL *s, int level); jpayne@69: __owur int SSL_get_security_level(const SSL *s); jpayne@69: void SSL_set_security_callback(SSL *s, jpayne@69: int (*cb) (const SSL *s, const SSL_CTX *ctx, jpayne@69: int op, int bits, int nid, jpayne@69: void *other, void *ex)); jpayne@69: int (*SSL_get_security_callback(const SSL *s)) (const SSL *s, jpayne@69: const SSL_CTX *ctx, int op, jpayne@69: int bits, int nid, void *other, jpayne@69: void *ex); jpayne@69: void SSL_set0_security_ex_data(SSL *s, void *ex); jpayne@69: __owur void *SSL_get0_security_ex_data(const SSL *s); jpayne@69: jpayne@69: void SSL_CTX_set_security_level(SSL_CTX *ctx, int level); jpayne@69: __owur int SSL_CTX_get_security_level(const SSL_CTX *ctx); jpayne@69: void SSL_CTX_set_security_callback(SSL_CTX *ctx, jpayne@69: int (*cb) (const SSL *s, const SSL_CTX *ctx, jpayne@69: int op, int bits, int nid, jpayne@69: void *other, void *ex)); jpayne@69: int (*SSL_CTX_get_security_callback(const SSL_CTX *ctx)) (const SSL *s, jpayne@69: const SSL_CTX *ctx, jpayne@69: int op, int bits, jpayne@69: int nid, jpayne@69: void *other, jpayne@69: void *ex); jpayne@69: void SSL_CTX_set0_security_ex_data(SSL_CTX *ctx, void *ex); jpayne@69: __owur void *SSL_CTX_get0_security_ex_data(const SSL_CTX *ctx); jpayne@69: jpayne@69: /* OPENSSL_INIT flag 0x010000 reserved for internal use */ jpayne@69: # define OPENSSL_INIT_NO_LOAD_SSL_STRINGS 0x00100000L jpayne@69: # define OPENSSL_INIT_LOAD_SSL_STRINGS 0x00200000L jpayne@69: jpayne@69: # define OPENSSL_INIT_SSL_DEFAULT \ jpayne@69: (OPENSSL_INIT_LOAD_SSL_STRINGS | OPENSSL_INIT_LOAD_CRYPTO_STRINGS) jpayne@69: jpayne@69: int OPENSSL_init_ssl(uint64_t opts, const OPENSSL_INIT_SETTINGS *settings); jpayne@69: jpayne@69: # ifndef OPENSSL_NO_UNIT_TEST jpayne@69: __owur const struct openssl_ssl_test_functions *SSL_test_functions(void); jpayne@69: # endif jpayne@69: jpayne@69: __owur int SSL_free_buffers(SSL *ssl); jpayne@69: __owur int SSL_alloc_buffers(SSL *ssl); jpayne@69: jpayne@69: /* Status codes passed to the decrypt session ticket callback. Some of these jpayne@69: * are for internal use only and are never passed to the callback. */ jpayne@69: typedef int SSL_TICKET_STATUS; jpayne@69: jpayne@69: /* Support for ticket appdata */ jpayne@69: /* fatal error, malloc failure */ jpayne@69: # define SSL_TICKET_FATAL_ERR_MALLOC 0 jpayne@69: /* fatal error, either from parsing or decrypting the ticket */ jpayne@69: # define SSL_TICKET_FATAL_ERR_OTHER 1 jpayne@69: /* No ticket present */ jpayne@69: # define SSL_TICKET_NONE 2 jpayne@69: /* Empty ticket present */ jpayne@69: # define SSL_TICKET_EMPTY 3 jpayne@69: /* the ticket couldn't be decrypted */ jpayne@69: # define SSL_TICKET_NO_DECRYPT 4 jpayne@69: /* a ticket was successfully decrypted */ jpayne@69: # define SSL_TICKET_SUCCESS 5 jpayne@69: /* same as above but the ticket needs to be renewed */ jpayne@69: # define SSL_TICKET_SUCCESS_RENEW 6 jpayne@69: jpayne@69: /* Return codes for the decrypt session ticket callback */ jpayne@69: typedef int SSL_TICKET_RETURN; jpayne@69: jpayne@69: /* An error occurred */ jpayne@69: #define SSL_TICKET_RETURN_ABORT 0 jpayne@69: /* Do not use the ticket, do not send a renewed ticket to the client */ jpayne@69: #define SSL_TICKET_RETURN_IGNORE 1 jpayne@69: /* Do not use the ticket, send a renewed ticket to the client */ jpayne@69: #define SSL_TICKET_RETURN_IGNORE_RENEW 2 jpayne@69: /* Use the ticket, do not send a renewed ticket to the client */ jpayne@69: #define SSL_TICKET_RETURN_USE 3 jpayne@69: /* Use the ticket, send a renewed ticket to the client */ jpayne@69: #define SSL_TICKET_RETURN_USE_RENEW 4 jpayne@69: jpayne@69: typedef int (*SSL_CTX_generate_session_ticket_fn)(SSL *s, void *arg); jpayne@69: typedef SSL_TICKET_RETURN (*SSL_CTX_decrypt_session_ticket_fn)(SSL *s, SSL_SESSION *ss, jpayne@69: const unsigned char *keyname, jpayne@69: size_t keyname_length, jpayne@69: SSL_TICKET_STATUS status, jpayne@69: void *arg); jpayne@69: int SSL_CTX_set_session_ticket_cb(SSL_CTX *ctx, jpayne@69: SSL_CTX_generate_session_ticket_fn gen_cb, jpayne@69: SSL_CTX_decrypt_session_ticket_fn dec_cb, jpayne@69: void *arg); jpayne@69: int SSL_SESSION_set1_ticket_appdata(SSL_SESSION *ss, const void *data, size_t len); jpayne@69: int SSL_SESSION_get0_ticket_appdata(SSL_SESSION *ss, void **data, size_t *len); jpayne@69: jpayne@69: extern const char SSL_version_str[]; jpayne@69: jpayne@69: typedef unsigned int (*DTLS_timer_cb)(SSL *s, unsigned int timer_us); jpayne@69: jpayne@69: void DTLS_set_timer_cb(SSL *s, DTLS_timer_cb cb); jpayne@69: jpayne@69: jpayne@69: typedef int (*SSL_allow_early_data_cb_fn)(SSL *s, void *arg); jpayne@69: void SSL_CTX_set_allow_early_data_cb(SSL_CTX *ctx, jpayne@69: SSL_allow_early_data_cb_fn cb, jpayne@69: void *arg); jpayne@69: void SSL_set_allow_early_data_cb(SSL *s, jpayne@69: SSL_allow_early_data_cb_fn cb, jpayne@69: void *arg); jpayne@69: jpayne@69: # ifdef __cplusplus jpayne@69: } jpayne@69: # endif jpayne@69: #endif