Home | History | Annotate | Download | only in conscrypt

Lines Matching refs:EVP_MD_CTX

30     private final NativeRef.EVP_MD_CTX ctx;
48 * Whether the digest struct has been initialized inside EVP_MD_CTX.
58 NativeRef.EVP_MD_CTX ctxLocal = new NativeRef.EVP_MD_CTX(NativeCrypto.EVP_MD_CTX_create());
62 private OpenSSLMessageDigestJDK(long evp_md, int size, NativeRef.EVP_MD_CTX ctx,
72 final NativeRef.EVP_MD_CTX ctxLocal = ctx;
81 // allocating a new EVP_MD_CTX by invoking EVP_MD_CTX_cleanup on the existing one.
82 // EVP_MD_CTX_cleanup cleans up and reinitializes the EVP_MD_CTX.
83 final NativeRef.EVP_MD_CTX ctxLocal = ctx;
151 // 1. No need to wipe EVP_MD_CTX because EVP_DigestFinal_ex has already cleansed any
198 NativeRef.EVP_MD_CTX ctxCopy = new NativeRef.EVP_MD_CTX(NativeCrypto.EVP_MD_CTX_create());
199 // EVP_MD_CTX_copy_ex requires that the digest struct of source EVP_MD_CTX is initialized.