OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:hash_context
(Results
1 - 3
of
3
) sorted by null
/external/chromium_org/crypto/third_party/nss/
rsawrapr.c
79
void *
hash_context
;
local
134
hash_context
= (*hash->create)();
135
if (
hash_context
== NULL) {
141
(*hash->begin)(
hash_context
);
142
(*hash->update)(
hash_context
, eightZeros, 8);
143
(*hash->update)(
hash_context
, mHash, hash->length);
144
(*hash->update)(
hash_context
, &db[dbMaskLen - sLen], sLen);
145
(*hash->end)(
hash_context
, H_, &i, hash->length);
146
(*hash->destroy)(
hash_context
, PR_TRUE);
/external/chromium_org/crypto/
openpgp_symmetric_encryption.cc
111
HASHContext*
hash_context
= HASH_Create(hash_function);
local
114
HASH_Begin(
hash_context
);
117
HASH_Update(
hash_context
, zero, sizeof(zero));
123
HASH_Update(
hash_context
,
128
HASH_Update(
hash_context
,
137
HASH_End(
hash_context
, digest, &num_hash_bytes, sizeof(digest));
146
HASH_Destroy(
hash_context
);
576
HASHContext*
hash_context
= HASH_Create(HASH_AlgSHA1);
local
577
HASH_Begin(
hash_context
);
578
HASH_Update(
hash_context
, prefix_copy, sizeof(prefix_copy))
735
HASHContext*
hash_context
= HASH_Create(HASH_AlgSHA1);
local
[
all
...]
signature_verifier_nss.cc
33
HASHContext*
hash_context
,
38
unsigned int hash_len = HASH_ResultLenContext(
hash_context
);
40
HASH_End(
hash_context
, &hash[0], &hash_len, hash.size());
56
HASH_GetType(
hash_context
), mask_hash_alg,
Completed in 88 milliseconds