Lines Matching refs:ctx
235 ctx: *mut ffi::EVP_MD_CTX,
249 let ctx = unsafe { cvt_p(EVP_MD_CTX_new())? };
252 ctx,
270 cvt(ffi::EVP_DigestInit_ex(self.ctx, self.md, ptr::null_mut()))?;
283 self.ctx,
304 self.ctx,
325 self.ctx,
349 let ctx = unsafe {
350 let ctx = EVP_MD_CTX_new();
351 assert!(!ctx.is_null());
352 let r = ffi::EVP_MD_CTX_copy_ex(ctx, self.ctx);
354 ctx
357 ctx,
371 EVP_MD_CTX_free(self.ctx);