Home
last modified time | relevance | path

Searched refs:hash_context_ (Results 1 – 2 of 2) sorted by relevance

/external/libchrome/crypto/
Dsignature_verifier_nss.cc81 hash_context_(NULL) { in SignatureVerifier()
94 if (vfy_context_ || hash_context_) in VerifyInit()
132 if (vfy_context_ || hash_context_) in VerifyInitRSAPSS()
146 hash_context_ = HASH_Create(ToNSSHashType(hash_alg_)); in VerifyInitRSAPSS()
147 if (!hash_context_) in VerifyInitRSAPSS()
149 HASH_Begin(hash_context_); in VerifyInitRSAPSS()
159 HASH_Update(hash_context_, data_part, data_part_len); in VerifyUpdate()
168 rv = VerifyRSAPSS_End(public_key_, hash_context_, in VerifyFinal()
202 if (hash_context_) { in Reset()
203 HASH_Destroy(hash_context_); in Reset()
[all …]
Dsignature_verifier.h128 HASHContext* hash_context_; variable