Home
last modified time | relevance | path

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

/external/chromium_org/net/third_party/nss/patches/
Daesgcm.patch634 + pwSpec->client.write_mac_context = NULL;
635 + pwSpec->server.write_mac_context = NULL;
652 - pwSpec->client.write_mac_context = NULL;
653 - pwSpec->server.write_mac_context = NULL;
748 hashObj->begin(write_mac_context);
753 hashObj->update(write_mac_context, mac_pad_1, pad_bytes);
754 - hashObj->update(write_mac_context, temp, tempLen);
755 + hashObj->update(write_mac_context, header, headerLen);
756 hashObj->update(write_mac_context, input, inputLength);
757 hashObj->end(write_mac_context, temp, &tempLen, sizeof temp);
[all …]
Dchacha20poly1305.patch109 pwSpec->client.write_mac_context = NULL;
110 pwSpec->server.write_mac_context = NULL;
/external/chromium_org/net/third_party/nss/ssl/
Dssl3con.c1334 if (mat->write_mac_context != NULL) { in ssl3_CleanupKeyMaterial()
1335 PK11_DestroyContext(mat->write_mac_context, PR_TRUE); in ssl3_CleanupKeyMaterial()
1336 mat->write_mac_context = NULL; in ssl3_CleanupKeyMaterial()
2127 pwSpec->client.write_mac_context = NULL; in ssl3_InitPendingContextsPKCS11()
2128 pwSpec->server.write_mac_context = NULL; in ssl3_InitPendingContextsPKCS11()
2154 pwSpec->client.write_mac_context = PK11_CreateContextBySymKey( in ssl3_InitPendingContextsPKCS11()
2156 if (pwSpec->client.write_mac_context == NULL) { in ssl3_InitPendingContextsPKCS11()
2160 pwSpec->server.write_mac_context = PK11_CreateContextBySymKey( in ssl3_InitPendingContextsPKCS11()
2162 if (pwSpec->server.write_mac_context == NULL) { in ssl3_InitPendingContextsPKCS11()
2241 if (pwSpec->client.write_mac_context != NULL) { in ssl3_InitPendingContextsPKCS11()
[all …]
Dsslimpl.h526 PK11Context *write_mac_context; member