Searched defs:tls_connection (Results 1 – 4 of 4) sorted by relevance
/external/wpa_supplicant/ |
D | tls_gnutls.c | 101 struct tls_connection { struct 102 gnutls_session session; 103 char *subject_match, *altsubject_match; 104 int read_alerts, write_alerts, failed; 106 u8 *pre_shared_secret; 107 size_t pre_shared_secret_len; 108 int established; 109 int verify_peer; 111 u8 *push_buf, *pull_buf, *pull_buf_offset; 112 size_t push_buf_len, pull_buf_len; [all …]
|
D | tls_schannel.c | 41 struct tls_connection { struct 42 int established, start; 43 int failed, read_alerts, write_alerts; 45 SCHANNEL_CRED schannel_cred; 46 CredHandle creds; 47 CtxtHandle context; 49 u8 eap_tls_prf[128]; 50 int eap_tls_prf_set;
|
D | tls_openssl.c | 58 struct tls_connection { struct 59 SSL *ssl; 60 BIO *ssl_in, *ssl_out; 62 ENGINE *engine; /* functional reference to the engine */ 63 EVP_PKEY *private_key; /* the private key if using engine */ 65 char *subject_match, *altsubject_match; 66 int read_alerts, write_alerts, failed; 68 u8 *pre_shared_secret; 69 size_t pre_shared_secret_len;
|
D | tls_internal.c | 31 struct tls_connection { struct 32 struct tlsv1_client *client;
|