Home
last modified time | relevance | path

Searched defs:groupRef (Results 1 – 4 of 4) sorted by relevance

/external/conscrypt/src/main/java/org/conscrypt/
DOpenSSLECGroupContext.java49 NativeRef.EC_GROUP groupRef = new NativeRef.EC_GROUP(ctx); in getCurveByName() local
161 NativeRef.EC_GROUP groupRef = new NativeRef.EC_GROUP(group); in getInstance() local
DNativeCrypto.java169 public static native long EVP_PKEY_new_EC_KEY(NativeRef.EC_GROUP groupRef, in EVP_PKEY_new_EC_KEY()
177 public static native void EC_GROUP_set_asn1_flag(NativeRef.EC_GROUP groupRef, int flag); in EC_GROUP_set_asn1_flag()
179 public static native void EC_GROUP_set_point_conversion_form(NativeRef.EC_GROUP groupRef, in EC_GROUP_set_point_conversion_form()
182 public static native String EC_GROUP_get_curve_name(NativeRef.EC_GROUP groupRef); in EC_GROUP_get_curve_name()
184 public static native byte[][] EC_GROUP_get_curve(NativeRef.EC_GROUP groupRef); in EC_GROUP_get_curve()
186 public static native void EC_GROUP_clear_free(long groupRef); in EC_GROUP_clear_free()
190 public static native long EC_GROUP_get_generator(NativeRef.EC_GROUP groupRef); in EC_GROUP_get_generator()
192 public static native int get_EC_GROUP_type(NativeRef.EC_GROUP groupRef); in get_EC_GROUP_type()
194 public static native byte[] EC_GROUP_get_order(NativeRef.EC_GROUP groupRef); in EC_GROUP_get_order()
196 public static native int EC_GROUP_get_degree(NativeRef.EC_GROUP groupRef); in EC_GROUP_get_degree()
[all …]
/external/conscrypt/src/main/native/
Dorg_conscrypt_NativeCrypto.cpp2706 static jlong NativeCrypto_EVP_PKEY_new_EC_KEY(JNIEnv* env, jclass, jobject groupRef,
3070 jobject groupRef) {
3633 static void NativeCrypto_EC_GROUP_set_asn1_flag(JNIEnv* env, jclass, jobject groupRef,
3655 jobject groupRef, jint form)
3674 static jstring NativeCrypto_EC_GROUP_get_curve_name(JNIEnv* env, jclass, jobject groupRef) {
3694 static jobjectArray NativeCrypto_EC_GROUP_get_curve(JNIEnv* env, jclass, jobject groupRef)
3745 static jbyteArray NativeCrypto_EC_GROUP_get_order(JNIEnv* env, jclass, jobject groupRef)
3775 static jint NativeCrypto_EC_GROUP_get_degree(JNIEnv* env, jclass, jobject groupRef)
3794 static jbyteArray NativeCrypto_EC_GROUP_get_cofactor(JNIEnv* env, jclass, jobject groupRef)
3824 static jint NativeCrypto_get_EC_GROUP_type(JNIEnv* env, jclass, jobject groupRef)
[all …]
/external/conscrypt/src/test/java/org/conscrypt/
DNativeCryptoTest.java2681 long groupRef = NativeCrypto.EC_GROUP_new_by_curve_name(name); in check_EC_GROUP() local
2760 NativeRef.EC_GROUP groupRef = new NativeRef.EC_GROUP(groupCtx); in test_ECDH_compute_key_null_key_Failure() local