hash_context_     670 content/child/webcrypto/platform_crypto_nss.cc       : hash_context_(NULL), algorithm_id_(algorithm_id) {}
hash_context_     673 content/child/webcrypto/platform_crypto_nss.cc     if (!hash_context_)
hash_context_     676 content/child/webcrypto/platform_crypto_nss.cc     HASH_Destroy(hash_context_);
hash_context_     677 content/child/webcrypto/platform_crypto_nss.cc     hash_context_ = NULL;
hash_context_     686 content/child/webcrypto/platform_crypto_nss.cc     if (!hash_context_) {
hash_context_     692 content/child/webcrypto/platform_crypto_nss.cc     HASH_Update(hash_context_, data, size);
hash_context_     707 content/child/webcrypto/platform_crypto_nss.cc     if (!hash_context_)
hash_context_     710 content/child/webcrypto/platform_crypto_nss.cc     unsigned int result_length = HASH_ResultLenContext(hash_context_);
hash_context_     724 content/child/webcrypto/platform_crypto_nss.cc     hash_context_ = HASH_Create(hash_type);
hash_context_     725 content/child/webcrypto/platform_crypto_nss.cc     if (!hash_context_)
hash_context_     728 content/child/webcrypto/platform_crypto_nss.cc     HASH_Begin(hash_context_);
hash_context_     734 content/child/webcrypto/platform_crypto_nss.cc     if (!hash_context_) {
hash_context_     740 content/child/webcrypto/platform_crypto_nss.cc     unsigned int hash_result_length = HASH_ResultLenContext(hash_context_);
hash_context_     743 content/child/webcrypto/platform_crypto_nss.cc     HASH_End(hash_context_, result, result_size, hash_result_length);
hash_context_     750 content/child/webcrypto/platform_crypto_nss.cc   HASHContext* hash_context_;
hash_context_     140 crypto/signature_verifier.h   HASHContext* hash_context_;
hash_context_      82 crypto/signature_verifier_nss.cc   if (vfy_context_ || hash_context_)
hash_context_     145 crypto/signature_verifier_nss.cc   if (vfy_context_ || hash_context_)
hash_context_     159 crypto/signature_verifier_nss.cc   hash_context_ = HASH_Create(ToNSSHashType(hash_alg_));
hash_context_     160 crypto/signature_verifier_nss.cc   if (!hash_context_)
hash_context_     162 crypto/signature_verifier_nss.cc   HASH_Begin(hash_context_);
hash_context_     172 crypto/signature_verifier_nss.cc     HASH_Update(hash_context_, data_part, data_part_len);
hash_context_     181 crypto/signature_verifier_nss.cc     rv = VerifyRSAPSS_End(public_key_, hash_context_,
hash_context_     215 crypto/signature_verifier_nss.cc   if (hash_context_) {
hash_context_     216 crypto/signature_verifier_nss.cc     HASH_Destroy(hash_context_);
hash_context_     217 crypto/signature_verifier_nss.cc     hash_context_ = NULL;