Searched refs:hashcx (Results 1 – 5 of 5) sorted by relevance
/external/chromium_org/net/third_party/nss/ssl/ |
D | sslgathr.c | 266 (*ss->sec.hash->begin)(ss->sec.hashcx); in ssl2_GatherData() 267 (*ss->sec.hash->update)(ss->sec.hashcx, ss->sec.rcvSecret.data, in ssl2_GatherData() 269 (*ss->sec.hash->update)(ss->sec.hashcx, pBuf + macLen, in ssl2_GatherData() 271 (*ss->sec.hash->update)(ss->sec.hashcx, seq, 4); in ssl2_GatherData() 272 (*ss->sec.hash->end)(ss->sec.hashcx, mac, &macLen, macLen); in ssl2_GatherData()
|
D | sslsecur.c | 961 if (os->sec.hash && os->sec.hashcx) { in ssl_CopySecurityInfo() 963 ss->sec.hashcx = os->sec.hash->clone(os->sec.hashcx); in ssl_CopySecurityInfo() 964 if (os->sec.hashcx && !ss->sec.hashcx) in ssl_CopySecurityInfo() 968 ss->sec.hashcx = NULL; in ssl_CopySecurityInfo() 1004 if (sec->hash && sec->hashcx) { in ssl_ResetSecurityInfo() 1005 (*sec->hash->destroy)(sec->hashcx, PR_TRUE); in ssl_ResetSecurityInfo() 1006 sec->hashcx = NULL; in ssl_ResetSecurityInfo()
|
D | notes.txt | 70 sec->hashcx (ptr and data) 96 sec->hashcx (ptr and data)
|
D | sslcon.c | 448 sec->hashcx = (*sec->hash->create)(); in ssl2_CreateMAC() 449 if (sec->hashcx == NULL) in ssl2_CreateMAC() 803 if (!sec->hashcx) in ssl2_CalcMAC() 807 (*sec->hash->begin)(sec->hashcx); in ssl2_CalcMAC() 810 (*sec->hash->update)(sec->hashcx, secret, secretLen); in ssl2_CalcMAC() 811 (*sec->hash->update)(sec->hashcx, data, dataLen); in ssl2_CalcMAC() 813 (*sec->hash->update)(sec->hashcx, padding, paddingLen); in ssl2_CalcMAC() 825 (*sec->hash->update)(sec->hashcx, seq, 4); in ssl2_CalcMAC() 828 (*sec->hash->end)(sec->hashcx, result, &nout, sec->hash->length); in ssl2_CalcMAC() 1153 PORT_Assert(ss->sec.hashcx != 0); in ssl2_UseEncryptedSendFunc()
|
D | sslimpl.h | 1160 void *hashcx; /* Spec Lock */ /* ssl2 only */ member
|