26 #if !defined(MBEDTLS_CONFIG_FILE)
29 #include MBEDTLS_CONFIG_FILE
37 #if defined(MBEDTLS_X509_CRT_PARSE_C)
42 #if defined(MBEDTLS_DHM_C)
46 #if defined(MBEDTLS_ECDH_C)
50 #if defined(MBEDTLS_ZLIB_SUPPORT)
54 #if defined(MBEDTLS_HAVE_TIME)
61 #define MBEDTLS_ERR_SSL_FEATURE_UNAVAILABLE -0x7080
62 #define MBEDTLS_ERR_SSL_BAD_INPUT_DATA -0x7100
63 #define MBEDTLS_ERR_SSL_INVALID_MAC -0x7180
64 #define MBEDTLS_ERR_SSL_INVALID_RECORD -0x7200
65 #define MBEDTLS_ERR_SSL_CONN_EOF -0x7280
66 #define MBEDTLS_ERR_SSL_UNKNOWN_CIPHER -0x7300
67 #define MBEDTLS_ERR_SSL_NO_CIPHER_CHOSEN -0x7380
68 #define MBEDTLS_ERR_SSL_NO_RNG -0x7400
69 #define MBEDTLS_ERR_SSL_NO_CLIENT_CERTIFICATE -0x7480
70 #define MBEDTLS_ERR_SSL_CERTIFICATE_TOO_LARGE -0x7500
71 #define MBEDTLS_ERR_SSL_CERTIFICATE_REQUIRED -0x7580
72 #define MBEDTLS_ERR_SSL_PRIVATE_KEY_REQUIRED -0x7600
73 #define MBEDTLS_ERR_SSL_CA_CHAIN_REQUIRED -0x7680
74 #define MBEDTLS_ERR_SSL_UNEXPECTED_MESSAGE -0x7700
75 #define MBEDTLS_ERR_SSL_FATAL_ALERT_MESSAGE -0x7780
76 #define MBEDTLS_ERR_SSL_PEER_VERIFY_FAILED -0x7800
77 #define MBEDTLS_ERR_SSL_PEER_CLOSE_NOTIFY -0x7880
78 #define MBEDTLS_ERR_SSL_BAD_HS_CLIENT_HELLO -0x7900
79 #define MBEDTLS_ERR_SSL_BAD_HS_SERVER_HELLO -0x7980
80 #define MBEDTLS_ERR_SSL_BAD_HS_CERTIFICATE -0x7A00
81 #define MBEDTLS_ERR_SSL_BAD_HS_CERTIFICATE_REQUEST -0x7A80
82 #define MBEDTLS_ERR_SSL_BAD_HS_SERVER_KEY_EXCHANGE -0x7B00
83 #define MBEDTLS_ERR_SSL_BAD_HS_SERVER_HELLO_DONE -0x7B80
84 #define MBEDTLS_ERR_SSL_BAD_HS_CLIENT_KEY_EXCHANGE -0x7C00
85 #define MBEDTLS_ERR_SSL_BAD_HS_CLIENT_KEY_EXCHANGE_RP -0x7C80
86 #define MBEDTLS_ERR_SSL_BAD_HS_CLIENT_KEY_EXCHANGE_CS -0x7D00
87 #define MBEDTLS_ERR_SSL_BAD_HS_CERTIFICATE_VERIFY -0x7D80
88 #define MBEDTLS_ERR_SSL_BAD_HS_CHANGE_CIPHER_SPEC -0x7E00
89 #define MBEDTLS_ERR_SSL_BAD_HS_FINISHED -0x7E80
90 #define MBEDTLS_ERR_SSL_ALLOC_FAILED -0x7F00
91 #define MBEDTLS_ERR_SSL_HW_ACCEL_FAILED -0x7F80
92 #define MBEDTLS_ERR_SSL_HW_ACCEL_FALLTHROUGH -0x6F80
93 #define MBEDTLS_ERR_SSL_COMPRESSION_FAILED -0x6F00
94 #define MBEDTLS_ERR_SSL_BAD_HS_PROTOCOL_VERSION -0x6E80
95 #define MBEDTLS_ERR_SSL_BAD_HS_NEW_SESSION_TICKET -0x6E00
96 #define MBEDTLS_ERR_SSL_SESSION_TICKET_EXPIRED -0x6D80
97 #define MBEDTLS_ERR_SSL_PK_TYPE_MISMATCH -0x6D00
98 #define MBEDTLS_ERR_SSL_UNKNOWN_IDENTITY -0x6C80
99 #define MBEDTLS_ERR_SSL_INTERNAL_ERROR -0x6C00
100 #define MBEDTLS_ERR_SSL_COUNTER_WRAPPING -0x6B80
101 #define MBEDTLS_ERR_SSL_WAITING_SERVER_HELLO_RENEGO -0x6B00
102 #define MBEDTLS_ERR_SSL_HELLO_VERIFY_REQUIRED -0x6A80
103 #define MBEDTLS_ERR_SSL_BUFFER_TOO_SMALL -0x6A00
104 #define MBEDTLS_ERR_SSL_NO_USABLE_CIPHERSUITE -0x6980
105 #define MBEDTLS_ERR_SSL_WANT_READ -0x6900
106 #define MBEDTLS_ERR_SSL_WANT_WRITE -0x6880
107 #define MBEDTLS_ERR_SSL_TIMEOUT -0x6800
108 #define MBEDTLS_ERR_SSL_CLIENT_RECONNECT -0x6780
113 #define MBEDTLS_SSL_MAJOR_VERSION_3 3
114 #define MBEDTLS_SSL_MINOR_VERSION_0 0
115 #define MBEDTLS_SSL_MINOR_VERSION_1 1
116 #define MBEDTLS_SSL_MINOR_VERSION_2 2
117 #define MBEDTLS_SSL_MINOR_VERSION_3 3
119 #define MBEDTLS_SSL_TRANSPORT_STREAM 0
120 #define MBEDTLS_SSL_TRANSPORT_DATAGRAM 1
122 #define MBEDTLS_SSL_MAX_HOST_NAME_LEN 255
126 #define MBEDTLS_SSL_MAX_FRAG_LEN_NONE 0
127 #define MBEDTLS_SSL_MAX_FRAG_LEN_512 1
128 #define MBEDTLS_SSL_MAX_FRAG_LEN_1024 2
129 #define MBEDTLS_SSL_MAX_FRAG_LEN_2048 3
130 #define MBEDTLS_SSL_MAX_FRAG_LEN_4096 4
131 #define MBEDTLS_SSL_MAX_FRAG_LEN_INVALID 5
133 #define MBEDTLS_SSL_IS_CLIENT 0
134 #define MBEDTLS_SSL_IS_SERVER 1
136 #define MBEDTLS_SSL_IS_NOT_FALLBACK 0
137 #define MBEDTLS_SSL_IS_FALLBACK 1
139 #define MBEDTLS_SSL_EXTENDED_MS_DISABLED 0
140 #define MBEDTLS_SSL_EXTENDED_MS_ENABLED 1
142 #define MBEDTLS_SSL_ETM_DISABLED 0
143 #define MBEDTLS_SSL_ETM_ENABLED 1
145 #define MBEDTLS_SSL_COMPRESS_NULL 0
146 #define MBEDTLS_SSL_COMPRESS_DEFLATE 1
148 #define MBEDTLS_SSL_VERIFY_NONE 0
149 #define MBEDTLS_SSL_VERIFY_OPTIONAL 1
150 #define MBEDTLS_SSL_VERIFY_REQUIRED 2
151 #define MBEDTLS_SSL_VERIFY_UNSET 3
153 #define MBEDTLS_SSL_LEGACY_RENEGOTIATION 0
154 #define MBEDTLS_SSL_SECURE_RENEGOTIATION 1
156 #define MBEDTLS_SSL_RENEGOTIATION_DISABLED 0
157 #define MBEDTLS_SSL_RENEGOTIATION_ENABLED 1
159 #define MBEDTLS_SSL_ANTI_REPLAY_DISABLED 0
160 #define MBEDTLS_SSL_ANTI_REPLAY_ENABLED 1
162 #define MBEDTLS_SSL_RENEGOTIATION_NOT_ENFORCED -1
163 #define MBEDTLS_SSL_RENEGO_MAX_RECORDS_DEFAULT 16
165 #define MBEDTLS_SSL_LEGACY_NO_RENEGOTIATION 0
166 #define MBEDTLS_SSL_LEGACY_ALLOW_RENEGOTIATION 1
167 #define MBEDTLS_SSL_LEGACY_BREAK_HANDSHAKE 2
169 #define MBEDTLS_SSL_TRUNC_HMAC_DISABLED 0
170 #define MBEDTLS_SSL_TRUNC_HMAC_ENABLED 1
171 #define MBEDTLS_SSL_TRUNCATED_HMAC_LEN 10
173 #define MBEDTLS_SSL_SESSION_TICKETS_DISABLED 0
174 #define MBEDTLS_SSL_SESSION_TICKETS_ENABLED 1
176 #define MBEDTLS_SSL_CBC_RECORD_SPLITTING_DISABLED 0
177 #define MBEDTLS_SSL_CBC_RECORD_SPLITTING_ENABLED 1
179 #define MBEDTLS_SSL_ARC4_ENABLED 0
180 #define MBEDTLS_SSL_ARC4_DISABLED 1
182 #define MBEDTLS_SSL_PRESET_DEFAULT 0
183 #define MBEDTLS_SSL_PRESET_SUITEB 2
189 #define MBEDTLS_SSL_DTLS_TIMEOUT_DFL_MIN 1000
190 #define MBEDTLS_SSL_DTLS_TIMEOUT_DFL_MAX 60000
200 #if !defined(MBEDTLS_SSL_DEFAULT_TICKET_LIFETIME)
201 #define MBEDTLS_SSL_DEFAULT_TICKET_LIFETIME 86400
215 #if !defined(MBEDTLS_SSL_MAX_CONTENT_LEN)
216 #define MBEDTLS_SSL_MAX_CONTENT_LEN 16384
224 #if defined(MBEDTLS_SSL_PROTO_SSL3)
225 #define MBEDTLS_SSL_VERIFY_DATA_MAX_LEN 36
227 #define MBEDTLS_SSL_VERIFY_DATA_MAX_LEN 12
233 #define MBEDTLS_SSL_EMPTY_RENEGOTIATION_INFO 0xFF
234 #define MBEDTLS_SSL_FALLBACK_SCSV_VALUE 0x5600
240 #define MBEDTLS_SSL_HASH_NONE 0
241 #define MBEDTLS_SSL_HASH_MD5 1
242 #define MBEDTLS_SSL_HASH_SHA1 2
243 #define MBEDTLS_SSL_HASH_SHA224 3
244 #define MBEDTLS_SSL_HASH_SHA256 4
245 #define MBEDTLS_SSL_HASH_SHA384 5
246 #define MBEDTLS_SSL_HASH_SHA512 6
248 #define MBEDTLS_SSL_SIG_ANON 0
249 #define MBEDTLS_SSL_SIG_RSA 1
250 #define MBEDTLS_SSL_SIG_ECDSA 3
256 #define MBEDTLS_SSL_CERT_TYPE_RSA_SIGN 1
257 #define MBEDTLS_SSL_CERT_TYPE_ECDSA_SIGN 64
262 #define MBEDTLS_SSL_MSG_CHANGE_CIPHER_SPEC 20
263 #define MBEDTLS_SSL_MSG_ALERT 21
264 #define MBEDTLS_SSL_MSG_HANDSHAKE 22
265 #define MBEDTLS_SSL_MSG_APPLICATION_DATA 23
267 #define MBEDTLS_SSL_ALERT_LEVEL_WARNING 1
268 #define MBEDTLS_SSL_ALERT_LEVEL_FATAL 2
270 #define MBEDTLS_SSL_ALERT_MSG_CLOSE_NOTIFY 0
271 #define MBEDTLS_SSL_ALERT_MSG_UNEXPECTED_MESSAGE 10
272 #define MBEDTLS_SSL_ALERT_MSG_BAD_RECORD_MAC 20
273 #define MBEDTLS_SSL_ALERT_MSG_DECRYPTION_FAILED 21
274 #define MBEDTLS_SSL_ALERT_MSG_RECORD_OVERFLOW 22
275 #define MBEDTLS_SSL_ALERT_MSG_DECOMPRESSION_FAILURE 30
276 #define MBEDTLS_SSL_ALERT_MSG_HANDSHAKE_FAILURE 40
277 #define MBEDTLS_SSL_ALERT_MSG_NO_CERT 41
278 #define MBEDTLS_SSL_ALERT_MSG_BAD_CERT 42
279 #define MBEDTLS_SSL_ALERT_MSG_UNSUPPORTED_CERT 43
280 #define MBEDTLS_SSL_ALERT_MSG_CERT_REVOKED 44
281 #define MBEDTLS_SSL_ALERT_MSG_CERT_EXPIRED 45
282 #define MBEDTLS_SSL_ALERT_MSG_CERT_UNKNOWN 46
283 #define MBEDTLS_SSL_ALERT_MSG_ILLEGAL_PARAMETER 47
284 #define MBEDTLS_SSL_ALERT_MSG_UNKNOWN_CA 48
285 #define MBEDTLS_SSL_ALERT_MSG_ACCESS_DENIED 49
286 #define MBEDTLS_SSL_ALERT_MSG_DECODE_ERROR 50
287 #define MBEDTLS_SSL_ALERT_MSG_DECRYPT_ERROR 51
288 #define MBEDTLS_SSL_ALERT_MSG_EXPORT_RESTRICTION 60
289 #define MBEDTLS_SSL_ALERT_MSG_PROTOCOL_VERSION 70
290 #define MBEDTLS_SSL_ALERT_MSG_INSUFFICIENT_SECURITY 71
291 #define MBEDTLS_SSL_ALERT_MSG_INTERNAL_ERROR 80
292 #define MBEDTLS_SSL_ALERT_MSG_INAPROPRIATE_FALLBACK 86
293 #define MBEDTLS_SSL_ALERT_MSG_USER_CANCELED 90
294 #define MBEDTLS_SSL_ALERT_MSG_NO_RENEGOTIATION 100
295 #define MBEDTLS_SSL_ALERT_MSG_UNSUPPORTED_EXT 110
296 #define MBEDTLS_SSL_ALERT_MSG_UNRECOGNIZED_NAME 112
297 #define MBEDTLS_SSL_ALERT_MSG_UNKNOWN_PSK_IDENTITY 115
298 #define MBEDTLS_SSL_ALERT_MSG_NO_APPLICATION_PROTOCOL 120
300 #define MBEDTLS_SSL_HS_HELLO_REQUEST 0
301 #define MBEDTLS_SSL_HS_CLIENT_HELLO 1
302 #define MBEDTLS_SSL_HS_SERVER_HELLO 2
303 #define MBEDTLS_SSL_HS_HELLO_VERIFY_REQUEST 3
304 #define MBEDTLS_SSL_HS_NEW_SESSION_TICKET 4
305 #define MBEDTLS_SSL_HS_CERTIFICATE 11
306 #define MBEDTLS_SSL_HS_SERVER_KEY_EXCHANGE 12
307 #define MBEDTLS_SSL_HS_CERTIFICATE_REQUEST 13
308 #define MBEDTLS_SSL_HS_SERVER_HELLO_DONE 14
309 #define MBEDTLS_SSL_HS_CERTIFICATE_VERIFY 15
310 #define MBEDTLS_SSL_HS_CLIENT_KEY_EXCHANGE 16
311 #define MBEDTLS_SSL_HS_FINISHED 20
316 #define MBEDTLS_TLS_EXT_SERVERNAME 0
317 #define MBEDTLS_TLS_EXT_SERVERNAME_HOSTNAME 0
319 #define MBEDTLS_TLS_EXT_MAX_FRAGMENT_LENGTH 1
321 #define MBEDTLS_TLS_EXT_TRUNCATED_HMAC 4
323 #define MBEDTLS_TLS_EXT_SUPPORTED_ELLIPTIC_CURVES 10
324 #define MBEDTLS_TLS_EXT_SUPPORTED_POINT_FORMATS 11
326 #define MBEDTLS_TLS_EXT_SIG_ALG 13
328 #define MBEDTLS_TLS_EXT_ALPN 16
330 #define MBEDTLS_TLS_EXT_ENCRYPT_THEN_MAC 22
331 #define MBEDTLS_TLS_EXT_EXTENDED_MASTER_SECRET 0x0017
333 #define MBEDTLS_TLS_EXT_SESSION_TICKET 35
335 #define MBEDTLS_TLS_EXT_ECJPAKE_KKPP 256
337 #define MBEDTLS_TLS_EXT_RENEGOTIATION_INFO 0xFF01
342 #if !defined(MBEDTLS_PSK_MAX_LEN)
343 #define MBEDTLS_PSK_MAX_LEN 32
349 #if defined(MBEDTLS_KEY_EXCHANGE_RSA_ENABLED)
350 unsigned char _pms_rsa[48];
352 #if defined(MBEDTLS_KEY_EXCHANGE_DHE_RSA_ENABLED)
355 #if defined(MBEDTLS_KEY_EXCHANGE_ECDHE_RSA_ENABLED) || \
356 defined(MBEDTLS_KEY_EXCHANGE_ECDHE_ECDSA_ENABLED) || \
357 defined(MBEDTLS_KEY_EXCHANGE_ECDH_RSA_ENABLED) || \
358 defined(MBEDTLS_KEY_EXCHANGE_ECDH_ECDSA_ENABLED)
361 #if defined(MBEDTLS_KEY_EXCHANGE_PSK_ENABLED)
364 #if defined(MBEDTLS_KEY_EXCHANGE_DHE_PSK_ENABLED)
368 #if defined(MBEDTLS_KEY_EXCHANGE_RSA_PSK_ENABLED)
371 #if defined(MBEDTLS_KEY_EXCHANGE_ECDHE_PSK_ENABLED)
375 #if defined(MBEDTLS_KEY_EXCHANGE_ECJPAKE_ENABLED)
376 unsigned char _pms_ecjpake[32];
380 #define MBEDTLS_PREMASTER_SIZE sizeof( union mbedtls_ssl_premaster_secret )
421 #if defined(MBEDTLS_X509_CRT_PARSE_C)
422 typedef struct mbedtls_ssl_key_cert mbedtls_ssl_key_cert;
424 #if defined(MBEDTLS_SSL_PROTO_DTLS)
425 typedef struct mbedtls_ssl_flight_item mbedtls_ssl_flight_item;
433 #if defined(MBEDTLS_HAVE_TIME)
439 unsigned char id[32];
442 #if defined(MBEDTLS_X509_CRT_PARSE_C)
447 #if defined(MBEDTLS_SSL_SESSION_TICKETS) && defined(MBEDTLS_SSL_CLI_C)
448 unsigned char *ticket;
450 uint32_t ticket_lifetime;
453 #if defined(MBEDTLS_SSL_MAX_FRAGMENT_LENGTH)
454 unsigned char mfl_code;
457 #if defined(MBEDTLS_SSL_TRUNCATED_HMAC)
461 #if defined(MBEDTLS_SSL_ENCRYPT_THEN_MAC)
462 int encrypt_then_mac;
480 void (*
f_dbg)(
void *, int,
const char *, int,
const char *);
484 int (*
f_rng)(
void *,
unsigned char *, size_t);
493 #if defined(MBEDTLS_SSL_SERVER_NAME_INDICATION)
499 #if defined(MBEDTLS_X509_CRT_PARSE_C)
505 #if defined(MBEDTLS_KEY_EXCHANGE__SOME__PSK_ENABLED)
507 int (*f_psk)(
void *, mbedtls_ssl_context *,
const unsigned char *, size_t);
511 #if defined(MBEDTLS_SSL_DTLS_HELLO_VERIFY) && defined(MBEDTLS_SSL_SRV_C)
513 int (*f_cookie_write)(
void *,
unsigned char **,
unsigned char *,
514 const unsigned char *, size_t );
516 int (*f_cookie_check)(
void *,
const unsigned char *, size_t,
517 const unsigned char *, size_t );
521 #if defined(MBEDTLS_SSL_SESSION_TICKETS) && defined(MBEDTLS_SSL_SRV_C)
524 unsigned char *,
const unsigned char *,
size_t *, uint32_t * );
526 int (*f_ticket_parse)(
void *, mbedtls_ssl_session *,
unsigned char *, size_t);
530 #if defined(MBEDTLS_SSL_EXPORT_KEYS)
532 int (*f_export_keys)(
void *,
const unsigned char *,
533 const unsigned char *, size_t, size_t, size_t );
537 #if defined(MBEDTLS_X509_CRT_PARSE_C)
539 mbedtls_ssl_key_cert *key_cert;
540 mbedtls_x509_crt *ca_chain;
544 #if defined(MBEDTLS_KEY_EXCHANGE__WITH_CERT__ENABLED)
545 const int *sig_hashes;
548 #if defined(MBEDTLS_ECP_C)
552 #if defined(MBEDTLS_DHM_C)
557 #if defined(MBEDTLS_KEY_EXCHANGE__SOME__PSK_ENABLED)
560 unsigned char *psk_identity;
561 size_t psk_identity_len;
564 #if defined(MBEDTLS_SSL_ALPN)
565 const char **alpn_list;
574 #if defined(MBEDTLS_SSL_PROTO_DTLS)
575 uint32_t hs_timeout_min;
577 uint32_t hs_timeout_max;
581 #if defined(MBEDTLS_SSL_RENEGOTIATION)
582 int renego_max_records;
583 unsigned char renego_period[8];
587 #if defined(MBEDTLS_SSL_DTLS_BADMAC_LIMIT)
588 unsigned int badmac_limit;
591 #if defined(MBEDTLS_DHM_C) && defined(MBEDTLS_SSL_CLI_C)
592 unsigned int dhm_min_bitlen;
609 #if defined(MBEDTLS_ARC4_C)
610 unsigned int arc4_disabled : 1;
612 #if defined(MBEDTLS_SSL_MAX_FRAGMENT_LENGTH)
613 unsigned int mfl_code : 3;
615 #if defined(MBEDTLS_SSL_ENCRYPT_THEN_MAC)
616 unsigned int encrypt_then_mac : 1 ;
618 #if defined(MBEDTLS_SSL_EXTENDED_MASTER_SECRET)
619 unsigned int extended_ms : 1;
621 #if defined(MBEDTLS_SSL_DTLS_ANTI_REPLAY)
622 unsigned int anti_replay : 1;
624 #if defined(MBEDTLS_SSL_CBC_RECORD_SPLITTING)
625 unsigned int cbc_record_splitting : 1;
627 #if defined(MBEDTLS_SSL_RENEGOTIATION)
628 unsigned int disable_renegotiation : 1;
630 #if defined(MBEDTLS_SSL_TRUNCATED_HMAC)
631 unsigned int trunc_hmac : 1;
633 #if defined(MBEDTLS_SSL_SESSION_TICKETS)
634 unsigned int session_tickets : 1;
636 #if defined(MBEDTLS_SSL_FALLBACK_SCSV) && defined(MBEDTLS_SSL_CLI_C)
637 unsigned int fallback : 1;
650 #if defined(MBEDTLS_SSL_RENEGOTIATION)
652 int renego_records_seen;
660 #if defined(MBEDTLS_SSL_DTLS_BADMAC_LIMIT)
661 unsigned badmac_seen;
667 int (*
f_send)(
void *,
const unsigned char *, size_t);
668 int (*
f_recv)(
void *,
unsigned char *, size_t);
714 #if defined(MBEDTLS_SSL_PROTO_DTLS)
716 size_t next_record_offset;
719 #if defined(MBEDTLS_SSL_DTLS_ANTI_REPLAY)
720 uint64_t in_window_top;
743 #if defined(MBEDTLS_ZLIB_SUPPORT)
744 unsigned char *compress_buf;
746 #if defined(MBEDTLS_SSL_CBC_RECORD_SPLITTING)
747 signed char split_done;
758 #if defined(MBEDTLS_X509_CRT_PARSE_C)
763 #if defined(MBEDTLS_SSL_ALPN)
764 const char *alpn_chosen;
770 #if defined(MBEDTLS_SSL_DTLS_HELLO_VERIFY) && defined(MBEDTLS_SSL_SRV_C)
771 unsigned char *cli_id;
781 #if defined(MBEDTLS_SSL_RENEGOTIATION)
782 size_t verify_data_len;
788 #if defined(MBEDTLS_SSL_HW_RECORD_ACCEL)
790 #define MBEDTLS_SSL_CHANNEL_OUTBOUND 0
791 #define MBEDTLS_SSL_CHANNEL_INBOUND 1
794 const unsigned char *key_enc,
const unsigned char *key_dec,
796 const unsigned char *iv_enc,
const unsigned char *iv_dec,
798 const unsigned char *mac_enc,
const unsigned char *mac_dec,
925 #if defined(MBEDTLS_X509_CRT_PARSE_C)
950 int (*f_rng)(
void *,
unsigned char *,
size_t),
968 void (*f_dbg)(
void *,
int,
const char *,
int,
const char *),
996 int (*f_send)(
void *,
const unsigned char *,
size_t),
997 int (*f_recv)(
void *,
unsigned char *,
size_t),
998 int (*f_recv_timeout)(
void *,
unsigned char *,
size_t, uint32_t) );
1035 void (*f_set_timer)(
void *, uint32_t int_ms, uint32_t fin_ms),
1036 int (*f_get_timer)(
void *) );
1059 unsigned char *start,
1060 const unsigned char *end,
1062 uint32_t *lifetime );
1064 #if defined(MBEDTLS_SSL_EXPORT_KEYS)
1085 typedef int mbedtls_ssl_export_keys_t(
void *p_expkey,
1086 const unsigned char *ms,
1087 const unsigned char *kb,
1121 #if defined(MBEDTLS_SSL_SESSION_TICKETS) && defined(MBEDTLS_SSL_SRV_C)
1142 #if defined(MBEDTLS_SSL_EXPORT_KEYS)
1154 mbedtls_ssl_export_keys_t *f_export_keys,
1155 void *p_export_keys );
1173 unsigned char **p,
unsigned char *end,
1174 const unsigned char *info,
size_t ilen );
1190 const unsigned char *cookie,
size_t clen,
1191 const unsigned char *info,
size_t ilen );
1193 #if defined(MBEDTLS_SSL_DTLS_HELLO_VERIFY) && defined(MBEDTLS_SSL_SRV_C)
1247 const unsigned char *info,
1252 #if defined(MBEDTLS_SSL_DTLS_ANTI_REPLAY)
1271 #if defined(MBEDTLS_SSL_DTLS_BADMAC_LIMIT)
1298 #if defined(MBEDTLS_SSL_PROTO_DTLS)
1315 void mbedtls_ssl_conf_handshake_timeout(
mbedtls_ssl_config *conf, uint32_t min, uint32_t max );
1318 #if defined(MBEDTLS_SSL_SRV_C)
1362 #if defined(MBEDTLS_SSL_CLI_C)
1396 const int *ciphersuites );
1418 const int *ciphersuites,
1419 int major,
int minor );
1421 #if defined(MBEDTLS_X509_CRT_PARSE_C)
1474 #if defined(MBEDTLS_KEY_EXCHANGE__SOME__PSK_ENABLED)
1490 const unsigned char *psk,
size_t psk_len,
1491 const unsigned char *psk_identity,
size_t psk_identity_len );
1507 const unsigned char *psk,
size_t psk_len );
1539 #if defined(MBEDTLS_DHM_C) && defined(MBEDTLS_SSL_SRV_C)
1551 int mbedtls_ssl_conf_dh_param(
mbedtls_ssl_config *conf,
const char *dhm_P,
const char *dhm_G );
1565 #if defined(MBEDTLS_DHM_C) && defined(MBEDTLS_SSL_CLI_C)
1575 unsigned int bitlen );
1578 #if defined(MBEDTLS_ECP_C)
1610 #if defined(MBEDTLS_KEY_EXCHANGE__WITH_CERT__ENABLED)
1630 const int *hashes );
1633 #if defined(MBEDTLS_X509_CRT_PARSE_C)
1647 #if defined(MBEDTLS_SSL_SERVER_NAME_INDICATION)
1721 #if defined(MBEDTLS_KEY_EXCHANGE_ECJPAKE_ENABLED)
1740 const unsigned char *pw,
1744 #if defined(MBEDTLS_SSL_ALPN)
1754 int mbedtls_ssl_conf_alpn_protocols(
mbedtls_ssl_config *conf,
const char **protos );
1806 #if defined(MBEDTLS_SSL_FALLBACK_SCSV) && defined(MBEDTLS_SSL_CLI_C)
1829 #if defined(MBEDTLS_SSL_ENCRYPT_THEN_MAC)
1844 #if defined(MBEDTLS_SSL_EXTENDED_MASTER_SECRET)
1859 #if defined(MBEDTLS_ARC4_C)
1876 #if defined(MBEDTLS_SSL_MAX_FRAGMENT_LENGTH)
1892 int mbedtls_ssl_conf_max_frag_len(
mbedtls_ssl_config *conf,
unsigned char mfl_code );
1895 #if defined(MBEDTLS_SSL_TRUNCATED_HMAC)
1907 #if defined(MBEDTLS_SSL_CBC_RECORD_SPLITTING)
1922 #if defined(MBEDTLS_SSL_SESSION_TICKETS) && defined(MBEDTLS_SSL_CLI_C)
1936 #if defined(MBEDTLS_SSL_RENEGOTIATION)
1986 #if defined(MBEDTLS_SSL_RENEGOTIATION)
2024 void mbedtls_ssl_conf_renegotiation_enforced(
mbedtls_ssl_config *conf,
int max_records );
2044 const unsigned char period[8] );
2099 #if defined(MBEDTLS_SSL_MAX_FRAGMENT_LENGTH)
2119 #if defined(MBEDTLS_X509_CRT_PARSE_C)
2137 #if defined(MBEDTLS_SSL_CLI_C)
2194 #if defined(MBEDTLS_SSL_RENEGOTIATION)
2279 unsigned char level,
2280 unsigned char message );
2324 int endpoint,
int transport,
int preset );
int mbedtls_ssl_ticket_parse_t(void *p_ticket, mbedtls_ssl_session *session, unsigned char *buf, size_t len)
Callback type: parse and load session ticket.
unsigned char max_minor_ver
const char * mbedtls_ssl_get_ciphersuite_name(const int ciphersuite_id)
Return the name of the ciphersuite associated with the given ID.
unsigned char min_minor_ver
int mbedtls_ssl_cookie_write_t(void *ctx, unsigned char **p, unsigned char *end, const unsigned char *info, size_t ilen)
Callback type: generate a cookie.
int mbedtls_ssl_cookie_check_t(void *ctx, const unsigned char *cookie, size_t clen, const unsigned char *info, size_t ilen)
Callback type: verify a cookie.
int(* f_get_timer)(void *)
int(* f_recv_timeout)(void *, unsigned char *, size_t, uint32_t)
mbedtls_ssl_transform * transform_in
Elliptic curves over GF(p)
Certificate revocation list structure.
int(* f_get_cache)(void *, mbedtls_ssl_session *)
Callback to retrieve a session from the cache.
void(* f_dbg)(void *, int, const char *, int, const char *)
Callback for printing debug output.
#define MBEDTLS_MPI_MAX_SIZE
mbedtls_ssl_session * session_in
Compatibility names (set of defines)
void mbedtls_ssl_conf_max_version(mbedtls_ssl_config *conf, int major, int minor)
Set the maximum supported version sent from the client side and/or accepted at the server side (Defau...
uint32_t mbedtls_ssl_get_verify_result(const mbedtls_ssl_context *ssl)
Return the result of the certificate verification.
mbedtls_ssl_session * session_out
int mbedtls_ssl_send_alert_message(mbedtls_ssl_context *ssl, unsigned char level, unsigned char message)
Send an alert message.
SSL Ciphersuites for mbed TLS.
mbedtls_ssl_transform * transform_out
int(* f_recv)(void *, unsigned char *, size_t)
int(* f_set_cache)(void *, const mbedtls_ssl_session *)
Callback to store a session into the cache.
Multi-precision integer library.
int mbedtls_ssl_write(mbedtls_ssl_context *ssl, const unsigned char *buf, size_t len)
Try to write exactly 'len' application data bytes.
void mbedtls_ssl_conf_min_version(mbedtls_ssl_config *conf, int major, int minor)
Set the minimum accepted SSL/TLS protocol version (Default: TLS 1.0)
int mbedtls_ssl_close_notify(mbedtls_ssl_context *ssl)
Notify the peer that the connection is being closed.
void mbedtls_ssl_conf_ciphersuites_for_version(mbedtls_ssl_config *conf, const int *ciphersuites, int major, int minor)
Set the list of allowed ciphersuites and the preference order for a specific version of the protocol...
mbedtls_ssl_transform * transform
mbedtls_ssl_handshake_params * handshake
void mbedtls_ssl_free(mbedtls_ssl_context *ssl)
Free referenced items in an SSL context and clear memory.
void mbedtls_ssl_conf_endpoint(mbedtls_ssl_config *conf, int endpoint)
Set the current endpoint type.
void mbedtls_ssl_session_free(mbedtls_ssl_session *session)
Free referenced items in an SSL session including the peer certificate and clear memory.
int(* f_send)(void *, const unsigned char *, size_t)
unsigned char min_major_ver
const int * ciphersuite_list[4]
int(* f_rng)(void *, unsigned char *, size_t)
Callback for getting (pseudo-)random numbers.
void(* f_set_timer)(void *, uint32_t, uint32_t)
int mbedtls_ssl_get_ciphersuite_id(const char *ciphersuite_name)
Return the ID of the ciphersuite associated with the given name.
void mbedtls_ssl_conf_transport(mbedtls_ssl_config *conf, int transport)
Set the transport type (TLS or DTLS).
mbedtls_ssl_session * session_negotiate
const int * mbedtls_ssl_list_ciphersuites(void)
Returns the list of ciphersuites supported by the SSL/TLS module.
void mbedtls_ssl_conf_rng(mbedtls_ssl_config *conf, int(*f_rng)(void *, unsigned char *, size_t), void *p_rng)
Set the random number generator callback.
Diffie-Hellman-Merkle key exchange.
X.509 certificate parsing and writing.
#define MBEDTLS_PSK_MAX_LEN
mbedtls_ssl_session * session
void mbedtls_ssl_init(mbedtls_ssl_context *ssl)
Initialize an SSL context Just makes the context ready for mbedtls_ssl_setup() or mbedtls_ssl_free() ...
mbedtls_ssl_transform * transform_negotiate
const char * mbedtls_ssl_get_ciphersuite(const mbedtls_ssl_context *ssl)
Return the name of the current ciphersuite.
mbedtls_ecp_group_id
Domain parameters (curve, subgroup and generator) identifiers.
const mbedtls_ssl_config * conf
void mbedtls_ssl_conf_dbg(mbedtls_ssl_config *conf, void(*f_dbg)(void *, int, const char *, int, const char *), void *p_dbg)
Set the debug callback.
unsigned char max_major_ver
void mbedtls_ssl_config_init(mbedtls_ssl_config *conf)
Initialize an SSL configuration context Just makes the context ready for mbedtls_ssl_config_defaults(...
int mbedtls_ssl_get_record_expansion(const mbedtls_ssl_context *ssl)
Return the (maximum) number of bytes added by the record layer: header + encryption/MAC overhead (inc...
Elliptic curve Diffie-Hellman.
void mbedtls_ssl_set_timer_cb(mbedtls_ssl_context *ssl, void *p_timer, void(*f_set_timer)(void *, uint32_t int_ms, uint32_t fin_ms), int(*f_get_timer)(void *))
Set the timer callbacks (Mandatory for DTLS.)
int mbedtls_ssl_setup(mbedtls_ssl_context *ssl, const mbedtls_ssl_config *conf)
Set up an SSL context for use.
void mbedtls_ssl_conf_legacy_renegotiation(mbedtls_ssl_config *conf, int allow_legacy)
Prevent or allow legacy renegotiation.
X.509 certificate revocation list parsing.
SSL/TLS configuration to be shared between mbedtls_ssl_context structures.
Container for an X.509 certificate.
void mbedtls_ssl_conf_read_timeout(mbedtls_ssl_config *conf, uint32_t timeout)
Set the timeout period for mbedtls_ssl_read() (Default: no timeout.)
void mbedtls_ssl_config_free(mbedtls_ssl_config *conf)
Free an SSL configuration context.
int mbedtls_ssl_read(mbedtls_ssl_context *ssl, unsigned char *buf, size_t len)
Read at most 'len' application data bytes.
size_t mbedtls_ssl_get_bytes_avail(const mbedtls_ssl_context *ssl)
Return the number of data bytes available to read.
void mbedtls_ssl_session_init(mbedtls_ssl_session *session)
Initialize SSL session structure.
Security profile for certificate verification.
int mbedtls_ssl_ticket_write_t(void *p_ticket, const mbedtls_ssl_session *session, unsigned char *start, const unsigned char *end, size_t *tlen, uint32_t *lifetime)
Callback type: generate and write session ticket.
int mbedtls_ssl_config_defaults(mbedtls_ssl_config *conf, int endpoint, int transport, int preset)
Load reasonnable default SSL configuration values.
int mbedtls_ssl_handshake(mbedtls_ssl_context *ssl)
Perform the SSL handshake.
unsigned int allow_legacy_renegotiation
int mbedtls_ssl_handshake_step(mbedtls_ssl_context *ssl)
Perform a single step of the SSL handshake.
void mbedtls_ssl_set_bio(mbedtls_ssl_context *ssl, void *p_bio, int(*f_send)(void *, const unsigned char *, size_t), int(*f_recv)(void *, unsigned char *, size_t), int(*f_recv_timeout)(void *, unsigned char *, size_t, uint32_t))
Set the underlying BIO callbacks for write, read and read-with-timeout.
const char * mbedtls_ssl_get_version(const mbedtls_ssl_context *ssl)
Return the current SSL version (SSLv3/TLSv1/etc)
void mbedtls_ssl_conf_authmode(mbedtls_ssl_config *conf, int authmode)
Set the certificate verification mode Default: NONE on server, REQUIRED on client.
int mbedtls_ssl_session_reset(mbedtls_ssl_context *ssl)
Reset an already initialized SSL context for re-use while retaining application-set variables...
#define MBEDTLS_ECP_MAX_BYTES
void mbedtls_ssl_conf_ciphersuites(mbedtls_ssl_config *conf, const int *ciphersuites)
Set the list of allowed ciphersuites and the preference order.
#define MBEDTLS_SSL_VERIFY_DATA_MAX_LEN