HomeSort by relevance Sort by last modified time
    Searched refs:schannel_cred (Results 1 - 4 of 4) sorted by null

  /external/wpa_supplicant/
tls_schannel.c 45 SCHANNEL_CRED schannel_cred; member in struct:tls_connection
736 os_memset(&conn->schannel_cred, 0, sizeof(conn->schannel_cred));
737 conn->schannel_cred.dwVersion = SCHANNEL_CRED_VERSION;
738 conn->schannel_cred.grbitEnabledProtocols = SP_PROT_TLS1;
740 conn->schannel_cred.cSupportedAlgs = 1;
741 conn->schannel_cred.palgSupportedAlgs = algs;
742 conn->schannel_cred.dwFlags |= SCH_CRED_NO_DEFAULT_CREDS;
746 &conn->schannel_cred, NULL, NULL, &conn->creds, &ts_expiry)
    [all...]
  /external/wpa_supplicant_6/wpa_supplicant/src/crypto/
tls_schannel.c 45 SCHANNEL_CRED schannel_cred; member in struct:tls_connection
729 os_memset(&conn->schannel_cred, 0, sizeof(conn->schannel_cred));
730 conn->schannel_cred.dwVersion = SCHANNEL_CRED_VERSION;
731 conn->schannel_cred.grbitEnabledProtocols = SP_PROT_TLS1;
733 conn->schannel_cred.cSupportedAlgs = 1;
734 conn->schannel_cred.palgSupportedAlgs = algs;
735 conn->schannel_cred.dwFlags |= SCH_CRED_NO_DEFAULT_CREDS;
739 &conn->schannel_cred, NULL, NULL, &conn->creds, &ts_expiry)
    [all...]
  /external/wpa_supplicant_8/src/crypto/
tls_schannel.c 45 SCHANNEL_CRED schannel_cred; member in struct:tls_connection
709 os_memset(&conn->schannel_cred, 0, sizeof(conn->schannel_cred));
710 conn->schannel_cred.dwVersion = SCHANNEL_CRED_VERSION;
711 conn->schannel_cred.grbitEnabledProtocols = SP_PROT_TLS1;
713 conn->schannel_cred.cSupportedAlgs = 1;
714 conn->schannel_cred.palgSupportedAlgs = algs;
715 conn->schannel_cred.dwFlags |= SCH_CRED_NO_DEFAULT_CREDS;
719 &conn->schannel_cred, NULL, NULL, &conn->creds, &ts_expiry)
    [all...]
  /external/chromium/net/socket/
ssl_client_socket_win.cc 204 SCHANNEL_CRED schannel_cred = {0}; local
205 schannel_cred.dwVersion = SCHANNEL_CRED_VERSION;
207 schannel_cred.cCreds = 1;
208 schannel_cred.paCred = &client_cert;
213 // schannel_cred.grbitEnabledProtocols.
214 schannel_cred.grbitEnabledProtocols = 0;
216 schannel_cred.grbitEnabledProtocols |= SP_PROT_SSL3;
218 schannel_cred.grbitEnabledProtocols |= SP_PROT_TLS1;
221 // schannel_cred.dwSessionLifespan to change the number of milliseconds tha
    [all...]

Completed in 2708 milliseconds