Home
last modified time | relevance | path

Searched refs:platformClientKey (Results 1 – 6 of 6) 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;
96 + PORT_Assert(ss->ssl3.platformClientKey == (PlatformKey)NULL);
111 + (void**)&ss->ssl3.platformClientKey,
[all …]
Dtls12backuphash.patch120 + if (ss->ssl3.platformClientKey->dwKeySpec != CERT_NCRYPT_KEY_SPEC) {
194 (ss->ssl3.platformClientKey ||
Dtls12backuphash2.patch39 if (ss->ssl3.platformClientKey->dwKeySpec != CERT_NCRYPT_KEY_SPEC) {
Dchannelid.patch264 ssl_FreePlatformKey(ss->ssl3.platformClientKey);
/external/chromium_org/net/third_party/nss/ssl/
Dssl3con.c6229 if (ss->ssl3.platformClientKey) { in ssl3_SendCertificateVerify()
6234 &hashes, ss->ssl3.platformClientKey, &buf, isTLS, keyType); in ssl3_SendCertificateVerify()
6235 ssl_FreePlatformKey(ss->ssl3.platformClientKey); in ssl3_SendCertificateVerify()
6236 ss->ssl3.platformClientKey = (PlatformKey)NULL; in ssl3_SendCertificateVerify()
6338 if (ss->ssl3.platformClientKey) { in ssl3_HandleServerHello()
6339 ssl_FreePlatformKey(ss->ssl3.platformClientKey); in ssl3_HandleServerHello()
6340 ss->ssl3.platformClientKey = (PlatformKey)NULL; in ssl3_HandleServerHello()
7020 if (ss->ssl3.platformClientKey->dwKeySpec != CERT_NCRYPT_KEY_SPEC) { in ssl3_ExtractClientKeyInfo()
7139 PORT_Assert(ss->ssl3.platformClientKey == (PlatformKey)NULL); in ssl3_HandleCertificateRequest()
7229 (void**)&ss->ssl3.platformClientKey, in ssl3_HandleCertificateRequest()
[all …]
Dsslimpl.h974 PlatformKey platformClientKey; /* used by client */ member