Home
last modified time | relevance | path

Searched refs:hashcx (Results 1 – 5 of 5) sorted by relevance

/external/chromium/net/third_party/nss/ssl/
Dsslgathr.c299 (*ss->sec.hash->begin)(ss->sec.hashcx); in ssl2_GatherData()
300 (*ss->sec.hash->update)(ss->sec.hashcx, ss->sec.rcvSecret.data, in ssl2_GatherData()
302 (*ss->sec.hash->update)(ss->sec.hashcx, pBuf + macLen, in ssl2_GatherData()
304 (*ss->sec.hash->update)(ss->sec.hashcx, seq, 4); in ssl2_GatherData()
305 (*ss->sec.hash->end)(ss->sec.hashcx, mac, &macLen, macLen); in ssl2_GatherData()
Dsslsecur.c860 if (os->sec.hash && os->sec.hashcx) { in ssl_CopySecurityInfo()
862 ss->sec.hashcx = os->sec.hash->clone(os->sec.hashcx); in ssl_CopySecurityInfo()
863 if (os->sec.hashcx && !ss->sec.hashcx) in ssl_CopySecurityInfo()
867 ss->sec.hashcx = NULL; in ssl_CopySecurityInfo()
903 if (sec->hash && sec->hashcx) { in ssl_ResetSecurityInfo()
904 (*sec->hash->destroy)(sec->hashcx, PR_TRUE); in ssl_ResetSecurityInfo()
905 sec->hashcx = NULL; in ssl_ResetSecurityInfo()
Dnotes.txt102 sec->hashcx (ptr and data)
128 sec->hashcx (ptr and data)
Dsslcon.c481 sec->hashcx = (*sec->hash->create)(); in ssl2_CreateMAC()
482 if (sec->hashcx == NULL) in ssl2_CreateMAC()
837 if (!sec->hashcx) in ssl2_CalcMAC()
841 (*sec->hash->begin)(sec->hashcx); in ssl2_CalcMAC()
844 (*sec->hash->update)(sec->hashcx, secret, secretLen); in ssl2_CalcMAC()
845 (*sec->hash->update)(sec->hashcx, data, dataLen); in ssl2_CalcMAC()
847 (*sec->hash->update)(sec->hashcx, padding, paddingLen); in ssl2_CalcMAC()
859 (*sec->hash->update)(sec->hashcx, seq, 4); in ssl2_CalcMAC()
862 (*sec->hash->end)(sec->hashcx, result, &nout, sec->hash->length); in ssl2_CalcMAC()
1188 PORT_Assert(ss->sec.hashcx != 0); in ssl2_UseEncryptedSendFunc()
Dsslimpl.h980 void *hashcx; /* Spec Lock */ /* ssl2 only */ member