Searched refs:evpMdRef (Results 1 – 1 of 1) sorted by relevance
/external/conscrypt/src/main/native/ |
D | org_conscrypt_NativeCrypto.cpp | 4368 static jint evpInit(JNIEnv* env, jobject evpMdCtxRef, jlong evpMdRef, const char* jniName, argument 4371 const EVP_MD* evp_md = reinterpret_cast<const EVP_MD*>(evpMdRef); 4394 static jint NativeCrypto_EVP_DigestInit(JNIEnv* env, jclass, jobject evpMdCtxRef, jlong evpMdRef) { argument 4395 return evpInit(env, evpMdCtxRef, evpMdRef, "EVP_DigestInit", EVP_DigestInit_ex); 4398 static jint NativeCrypto_EVP_SignInit(JNIEnv* env, jclass, jobject evpMdCtxRef, jlong evpMdRef) { argument 4399 return evpInit(env, evpMdCtxRef, evpMdRef, "EVP_SignInit", EVP_DigestInit_ex); 4402 static jint NativeCrypto_EVP_VerifyInit(JNIEnv* env, jclass, jobject evpMdCtxRef, jlong evpMdRef) { argument 4403 return evpInit(env, evpMdCtxRef, evpMdRef, "EVP_VerifyInit", EVP_DigestInit_ex); 4463 static jint NativeCrypto_EVP_MD_size(JNIEnv* env, jclass, jlong evpMdRef) { argument 4464 EVP_MD* evp_md = reinterpret_cast<EVP_MD*>(evpMdRef); [all …]
|