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

  /external/chromium/net/third_party/nss/ssl/
sslgathr.c 299 (*ss->sec.hash->begin)(ss->sec.hashcx);
300 (*ss->sec.hash->update)(ss->sec.hashcx, ss->sec.rcvSecret.data,
302 (*ss->sec.hash->update)(ss->sec.hashcx, pBuf + macLen,
304 (*ss->sec.hash->update)(ss->sec.hashcx, seq, 4);
305 (*ss->sec.hash->end)(ss->sec.hashcx, mac, &macLen, macLen);
sslsecur.c 860 if (os->sec.hash && os->sec.hashcx) {
862 ss->sec.hashcx = os->sec.hash->clone(os->sec.hashcx);
863 if (os->sec.hashcx && !ss->sec.hashcx)
867 ss->sec.hashcx = NULL;
903 if (sec->hash && sec->hashcx) {
904 (*sec->hash->destroy)(sec->hashcx, PR_TRUE);
905 sec->hashcx = NULL;
    [all...]
sslcon.c 481 sec->hashcx = (*sec->hash->create)();
482 if (sec->hashcx == NULL)
837 if (!sec->hashcx)
841 (*sec->hash->begin)(sec->hashcx);
844 (*sec->hash->update)(sec->hashcx, secret, secretLen);
845 (*sec->hash->update)(sec->hashcx, data, dataLen);
847 (*sec->hash->update)(sec->hashcx, padding, paddingLen);
859 (*sec->hash->update)(sec->hashcx, seq, 4);
862 (*sec->hash->end)(sec->hashcx, result, &nout, sec->hash->length);
    [all...]
sslimpl.h 980 void *hashcx; \/* Spec Lock *\/ \/* ssl2 only *\/ member in struct:sslSecurityInfoStr
    [all...]

Completed in 87 milliseconds