Home
last modified time | relevance | path

Searched refs:platformClientKey (Results 1 – 4 of 4) sorted by relevance

/external/chromium_org/net/third_party/nss/patches/
Dclientauth.patch8 + /* If NSS_PLATFORM_CLIENT_AUTH is defined and a platformClientKey is being
23 + if (ss->ssl3.platformClientKey) {
28 + &hashes, ss->ssl3.platformClientKey, &buf, isTLS, keyType);
29 + ssl_FreePlatformKey(ss->ssl3.platformClientKey);
30 + ss->ssl3.platformClientKey = (PlatformKey)NULL;
73 + if (ss->ssl3.platformClientKey) {
74 + ssl_FreePlatformKey(ss->ssl3.platformClientKey);
75 + ss->ssl3.platformClientKey = (PlatformKey)NULL;
89 + if (ss->ssl3.platformClientKey->dwKeySpec != CERT_NCRYPT_KEY_SPEC) {
115 + PORT_Assert(ss->ssl3.platformClientKey == (PlatformKey)NULL);
[all …]
Dchannelid.patch321 ssl_FreePlatformKey(ss->ssl3.platformClientKey);
/external/chromium_org/net/third_party/nss/ssl/
Dssl3con.c6284 if (ss->ssl3.platformClientKey) { in ssl3_SendCertificateVerify()
6289 &hashes, ss->ssl3.platformClientKey, &buf, isTLS, keyType); in ssl3_SendCertificateVerify()
6290 ssl_FreePlatformKey(ss->ssl3.platformClientKey); in ssl3_SendCertificateVerify()
6291 ss->ssl3.platformClientKey = (PlatformKey)NULL; in ssl3_SendCertificateVerify()
6393 if (ss->ssl3.platformClientKey) { in ssl3_HandleServerHello()
6394 ssl_FreePlatformKey(ss->ssl3.platformClientKey); in ssl3_HandleServerHello()
6395 ss->ssl3.platformClientKey = (PlatformKey)NULL; in ssl3_HandleServerHello()
7074 if (ss->ssl3.platformClientKey->dwKeySpec != CERT_NCRYPT_KEY_SPEC) { in ssl3_ExtractClientKeyInfo()
7200 PORT_Assert(ss->ssl3.platformClientKey == (PlatformKey)NULL); in ssl3_HandleCertificateRequest()
7290 (void**)&ss->ssl3.platformClientKey, in ssl3_HandleCertificateRequest()
[all …]
Dsslimpl.h1006 PlatformKey platformClientKey; /* used by client */ member