Lines Matching refs:vfy_context_
76 : vfy_context_(NULL), in SignatureVerifier()
94 if (vfy_context_ || hash_context_) in VerifyInit()
108 vfy_context_ = VFY_CreateContext( in VerifyInit()
111 if (!vfy_context_) { in VerifyInit()
118 if (VFY_Begin(vfy_context_) != SECSuccess) { in VerifyInit()
132 if (vfy_context_ || hash_context_) in VerifyInitRSAPSS()
155 if (vfy_context_) { in VerifyUpdate()
156 SECStatus rv = VFY_Update(vfy_context_, data_part, data_part_len); in VerifyUpdate()
165 if (vfy_context_) { in VerifyFinal()
166 rv = VFY_End(vfy_context_); in VerifyFinal()
198 if (vfy_context_) { in Reset()
199 VFY_DestroyContext(vfy_context_, PR_TRUE); in Reset()
200 vfy_context_ = NULL; in Reset()