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

  /external/wpa_supplicant_8/src/crypto/
tls_schannel.c 39 SCHANNEL_CRED schannel_cred; member in struct:tls_connection
703 os_memset(&conn->schannel_cred, 0, sizeof(conn->schannel_cred));
704 conn->schannel_cred.dwVersion = SCHANNEL_CRED_VERSION;
705 conn->schannel_cred.grbitEnabledProtocols = SP_PROT_TLS1;
707 conn->schannel_cred.cSupportedAlgs = 1;
708 conn->schannel_cred.palgSupportedAlgs = algs;
709 conn->schannel_cred.dwFlags |= SCH_CRED_NO_DEFAULT_CREDS;
713 &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 70 milliseconds