HomeSort by relevance Sort by last modified time
    Searched refs:hashcx (Results 1 - 4 of 4) sorted by null

  /external/chromium_org/net/third_party/nss/ssl/
sslgathr.c 266 (*ss->sec.hash->begin)(ss->sec.hashcx);
267 (*ss->sec.hash->update)(ss->sec.hashcx, ss->sec.rcvSecret.data,
269 (*ss->sec.hash->update)(ss->sec.hashcx, pBuf + macLen,
271 (*ss->sec.hash->update)(ss->sec.hashcx, seq, 4);
272 (*ss->sec.hash->end)(ss->sec.hashcx, mac, &macLen, macLen);
sslsecur.c 881 if (os->sec.hash && os->sec.hashcx) {
883 ss->sec.hashcx = os->sec.hash->clone(os->sec.hashcx);
884 if (os->sec.hashcx && !ss->sec.hashcx)
888 ss->sec.hashcx = NULL;
924 if (sec->hash && sec->hashcx) {
925 (*sec->hash->destroy)(sec->hashcx, PR_TRUE);
926 sec->hashcx = NULL;
    [all...]
sslcon.c 448 sec->hashcx = (*sec->hash->create)();
449 if (sec->hashcx == NULL)
803 if (!sec->hashcx)
807 (*sec->hash->begin)(sec->hashcx);
810 (*sec->hash->update)(sec->hashcx, secret, secretLen);
811 (*sec->hash->update)(sec->hashcx, data, dataLen);
813 (*sec->hash->update)(sec->hashcx, padding, paddingLen);
825 (*sec->hash->update)(sec->hashcx, seq, 4);
828 (*sec->hash->end)(sec->hashcx, result, &nout, sec->hash->length);
    [all...]
sslimpl.h 1109 void *hashcx; \/* Spec Lock *\/ \/* ssl2 only *\/ member in struct:sslSecurityInfoStr
    [all...]

Completed in 496 milliseconds