OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
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
961
if (os->sec.hash && os->sec.
hashcx
) {
963
ss->sec.
hashcx
= os->sec.hash->clone(os->sec.
hashcx
);
964
if (os->sec.
hashcx
&& !ss->sec.
hashcx
)
968
ss->sec.
hashcx
= NULL;
1004
if (sec->hash && sec->
hashcx
) {
1005
(*sec->hash->destroy)(sec->
hashcx
, PR_TRUE);
1006
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
1160
void *
hashcx
; \/* Spec Lock *\/ \/* ssl2 only *\/
member in struct:sslSecurityInfoStr
[
all
...]
Completed in 53 milliseconds