Searched defs:groupRef (Results 1 – 4 of 4) sorted by relevance
/external/conscrypt/src/main/java/org/conscrypt/ |
D | OpenSSLECGroupContext.java | 49 NativeRef.EC_GROUP groupRef = new NativeRef.EC_GROUP(ctx); in getCurveByName() local 156 NativeRef.EC_GROUP groupRef = new NativeRef.EC_GROUP(group); in getInstance() local
|
D | NativeCrypto.java | 159 public static native long EVP_PKEY_new_EC_KEY(NativeRef.EC_GROUP groupRef, in EVP_PKEY_new_EC_KEY() 167 public static native void EC_GROUP_set_asn1_flag(NativeRef.EC_GROUP groupRef, int flag); in EC_GROUP_set_asn1_flag() 169 public static native void EC_GROUP_set_point_conversion_form(NativeRef.EC_GROUP groupRef, in EC_GROUP_set_point_conversion_form() 172 public static native String EC_GROUP_get_curve_name(NativeRef.EC_GROUP groupRef); in EC_GROUP_get_curve_name() 174 public static native byte[][] EC_GROUP_get_curve(NativeRef.EC_GROUP groupRef); in EC_GROUP_get_curve() 176 public static native void EC_GROUP_clear_free(long groupRef); in EC_GROUP_clear_free() 178 public static native long EC_GROUP_get_generator(NativeRef.EC_GROUP groupRef); in EC_GROUP_get_generator() 180 public static native int get_EC_GROUP_type(NativeRef.EC_GROUP groupRef); in get_EC_GROUP_type() 182 public static native byte[] EC_GROUP_get_order(NativeRef.EC_GROUP groupRef); in EC_GROUP_get_order() 184 public static native int EC_GROUP_get_degree(NativeRef.EC_GROUP groupRef); in EC_GROUP_get_degree() [all …]
|
/external/conscrypt/src/main/native/ |
D | org_conscrypt_NativeCrypto.cpp | 2680 static jlong NativeCrypto_EVP_PKEY_new_EC_KEY(JNIEnv* env, jclass, jobject groupRef, 3004 jobject groupRef) { 3469 static void NativeCrypto_EC_GROUP_set_asn1_flag(JNIEnv* env, jclass, jobject groupRef, 3491 jobject groupRef, jint form) 3510 static jstring NativeCrypto_EC_GROUP_get_curve_name(JNIEnv* env, jclass, jobject groupRef) { 3530 static jobjectArray NativeCrypto_EC_GROUP_get_curve(JNIEnv* env, jclass, jobject groupRef) 3581 static jbyteArray NativeCrypto_EC_GROUP_get_order(JNIEnv* env, jclass, jobject groupRef) 3611 static jint NativeCrypto_EC_GROUP_get_degree(JNIEnv* env, jclass, jobject groupRef) 3630 static jbyteArray NativeCrypto_EC_GROUP_get_cofactor(JNIEnv* env, jclass, jobject groupRef) 3660 static jint NativeCrypto_get_EC_GROUP_type(JNIEnv* env, jclass, jobject groupRef) [all …]
|
/external/conscrypt/src/test/java/org/conscrypt/ |
D | NativeCryptoTest.java | 2832 long groupRef = NativeCrypto.EC_GROUP_new_by_curve_name(name); in check_EC_GROUP() local 2911 NativeRef.EC_GROUP groupRef = new NativeRef.EC_GROUP(groupCtx); in test_ECDH_compute_key_null_key_Failure() local
|