Searched refs:schannel_cred (Results 1 – 3 of 3) sorted by relevance
/external/wpa_supplicant_8/src/crypto/ |
D | tls_schannel.c | 39 SCHANNEL_CRED schannel_cred; member 703 os_memset(&conn->schannel_cred, 0, sizeof(conn->schannel_cred)); in tls_connection_set_params() 704 conn->schannel_cred.dwVersion = SCHANNEL_CRED_VERSION; in tls_connection_set_params() 705 conn->schannel_cred.grbitEnabledProtocols = SP_PROT_TLS1; in tls_connection_set_params() 707 conn->schannel_cred.cSupportedAlgs = 1; in tls_connection_set_params() 708 conn->schannel_cred.palgSupportedAlgs = algs; in tls_connection_set_params() 709 conn->schannel_cred.dwFlags |= SCH_CRED_NO_DEFAULT_CREDS; in tls_connection_set_params() 713 &conn->schannel_cred, NULL, NULL, &conn->creds, &ts_expiry); in tls_connection_set_params() 717 &conn->schannel_cred, NULL, NULL, &conn->creds, &ts_expiry); in tls_connection_set_params()
|
/external/wpa_supplicant_6/wpa_supplicant/src/crypto/ |
D | tls_schannel.c | 45 SCHANNEL_CRED schannel_cred; member 729 os_memset(&conn->schannel_cred, 0, sizeof(conn->schannel_cred)); in tls_connection_set_params() 730 conn->schannel_cred.dwVersion = SCHANNEL_CRED_VERSION; in tls_connection_set_params() 731 conn->schannel_cred.grbitEnabledProtocols = SP_PROT_TLS1; in tls_connection_set_params() 733 conn->schannel_cred.cSupportedAlgs = 1; in tls_connection_set_params() 734 conn->schannel_cred.palgSupportedAlgs = algs; in tls_connection_set_params() 735 conn->schannel_cred.dwFlags |= SCH_CRED_NO_DEFAULT_CREDS; in tls_connection_set_params() 739 &conn->schannel_cred, NULL, NULL, &conn->creds, &ts_expiry); in tls_connection_set_params() 743 &conn->schannel_cred, NULL, NULL, &conn->creds, &ts_expiry); in tls_connection_set_params()
|
/external/chromium/net/socket/ |
D | ssl_client_socket_win.cc | 204 SCHANNEL_CRED schannel_cred = {0}; in InitializeHandle() local 205 schannel_cred.dwVersion = SCHANNEL_CRED_VERSION; in InitializeHandle() 207 schannel_cred.cCreds = 1; in InitializeHandle() 208 schannel_cred.paCred = &client_cert; in InitializeHandle() 214 schannel_cred.grbitEnabledProtocols = 0; in InitializeHandle() 216 schannel_cred.grbitEnabledProtocols |= SP_PROT_SSL3; in InitializeHandle() 218 schannel_cred.grbitEnabledProtocols |= SP_PROT_TLS1; in InitializeHandle() 250 schannel_cred.dwFlags |= SCH_CRED_NO_DEFAULT_CREDS | in InitializeHandle() 261 &schannel_cred, in InitializeHandle()
|