Home | History | Annotate | Download | only in pkcs12

Lines Matching refs:ctx

114 	EVP_MD_CTX ctx;
127 EVP_MD_CTX_init(&ctx);
157 EVP_DigestInit_ex(&ctx, md_type, NULL);
158 EVP_DigestUpdate(&ctx, D, v);
159 EVP_DigestUpdate(&ctx, I, Ilen);
160 EVP_DigestFinal_ex(&ctx, Ai, NULL);
162 EVP_DigestInit_ex(&ctx, md_type, NULL);
163 EVP_DigestUpdate(&ctx, Ai, u);
164 EVP_DigestFinal_ex(&ctx, Ai, NULL);
174 EVP_MD_CTX_cleanup(&ctx);