Home | History | Annotate | Download | only in crypto

Lines Matching refs:verify_context_

25     : verify_context_(NULL) {
38 DCHECK(!verify_context_);
39 verify_context_ = new VerifyContext;
59 verify_context_->public_key.reset(d2i_PUBKEY_bio(bio.get(), NULL));
60 if (!verify_context_->public_key.get())
63 verify_context_->ctx.reset(EVP_MD_CTX_create());
64 int rv = EVP_VerifyInit_ex(verify_context_->ctx.get(), digest, NULL);
70 DCHECK(verify_context_);
72 int rv = EVP_VerifyUpdate(verify_context_->ctx.get(),
78 DCHECK(verify_context_);
80 int rv = EVP_VerifyFinal(verify_context_->ctx.get(),
82 verify_context_->public_key.get());
89 delete verify_context_;
90 verify_context_ = NULL;