Searched refs:pkeyRef (Results 1 – 3 of 3) sorted by relevance
/external/conscrypt/common/src/jni/main/cpp/conscrypt/ |
D | native_crypto.cc | 1071 static int NativeCrypto_EVP_PKEY_type(JNIEnv* env, jclass, jobject pkeyRef) { in NativeCrypto_EVP_PKEY_type() argument 1073 EVP_PKEY* pkey = fromContextObject<EVP_PKEY>(env, pkeyRef); in NativeCrypto_EVP_PKEY_type() 1087 static jstring evp_print_func(JNIEnv* env, jobject pkeyRef, print_func* func, in evp_print_func() argument 1089 EVP_PKEY* pkey = fromContextObject<EVP_PKEY>(env, pkeyRef); in evp_print_func() 1117 static jstring NativeCrypto_EVP_PKEY_print_public(JNIEnv* env, jclass, jobject pkeyRef) { in NativeCrypto_EVP_PKEY_print_public() argument 1119 return evp_print_func(env, pkeyRef, EVP_PKEY_print_public, "EVP_PKEY_print_public"); in NativeCrypto_EVP_PKEY_print_public() 1122 static jstring NativeCrypto_EVP_PKEY_print_params(JNIEnv* env, jclass, jobject pkeyRef) { in NativeCrypto_EVP_PKEY_print_params() argument 1124 return evp_print_func(env, pkeyRef, EVP_PKEY_print_params, "EVP_PKEY_print_params"); in NativeCrypto_EVP_PKEY_print_params() 1127 static void NativeCrypto_EVP_PKEY_free(JNIEnv* env, jclass, jlong pkeyRef) { in NativeCrypto_EVP_PKEY_free() argument 1129 EVP_PKEY* pkey = reinterpret_cast<EVP_PKEY*>(pkeyRef); in NativeCrypto_EVP_PKEY_free() [all …]
|
/external/conscrypt/common/src/main/java/org/conscrypt/ |
D | NativeCrypto.java | 92 static native String EVP_PKEY_print_public(NativeRef.EVP_PKEY pkeyRef); in EVP_PKEY_print_public() argument 94 static native String EVP_PKEY_print_params(NativeRef.EVP_PKEY pkeyRef); in EVP_PKEY_print_params() argument 186 static native long EC_KEY_get1_group(NativeRef.EVP_PKEY pkeyRef); in EC_KEY_get1_group() argument
|
/external/conscrypt/repackaged/common/src/main/java/com/android/org/conscrypt/ |
D | NativeCrypto.java | 95 static native String EVP_PKEY_print_public(NativeRef.EVP_PKEY pkeyRef); in EVP_PKEY_print_public() argument 97 static native String EVP_PKEY_print_params(NativeRef.EVP_PKEY pkeyRef); in EVP_PKEY_print_params() argument 194 static native long EC_KEY_get1_group(NativeRef.EVP_PKEY pkeyRef); in EC_KEY_get1_group() argument
|