Searched defs:groupRef (Results 1 – 7 of 7) sorted by relevance
/external/conscrypt/common/src/main/java/org/conscrypt/ |
D | OpenSSLECGroupContext.java | 49 NativeRef.EC_GROUP groupRef = new NativeRef.EC_GROUP(ctx); in getCurveByName() local 152 NativeRef.EC_GROUP groupRef = new NativeRef.EC_GROUP(group); in getInstance() local
|
D | NativeCrypto.java | 153 NativeRef.EC_GROUP groupRef, NativeRef.EC_POINT pubkeyRef, byte[] privkey); in EVP_PKEY_new_EC_KEY() 160 static native String EC_GROUP_get_curve_name(NativeRef.EC_GROUP groupRef); in EC_GROUP_get_curve_name() 162 static native byte[][] EC_GROUP_get_curve(NativeRef.EC_GROUP groupRef); in EC_GROUP_get_curve() 164 static native void EC_GROUP_clear_free(long groupRef); in EC_GROUP_clear_free() 166 static native long EC_GROUP_get_generator(NativeRef.EC_GROUP groupRef); in EC_GROUP_get_generator() 168 static native byte[] EC_GROUP_get_order(NativeRef.EC_GROUP groupRef); in EC_GROUP_get_order() 170 static native int EC_GROUP_get_degree(NativeRef.EC_GROUP groupRef); in EC_GROUP_get_degree() 172 static native byte[] EC_GROUP_get_cofactor(NativeRef.EC_GROUP groupRef); in EC_GROUP_get_cofactor() 174 static native long EC_POINT_new(NativeRef.EC_GROUP groupRef); in EC_POINT_new() 179 NativeRef.EC_GROUP groupRef, NativeRef.EC_POINT pointRef); in EC_POINT_get_affine_coordinates() [all …]
|
/external/conscrypt/repackaged/common/src/main/java/com/android/org/conscrypt/ |
D | OpenSSLECGroupContext.java | 50 NativeRef.EC_GROUP groupRef = new NativeRef.EC_GROUP(ctx); in getCurveByName() local 153 NativeRef.EC_GROUP groupRef = new NativeRef.EC_GROUP(group); in getInstance() local
|
D | NativeCrypto.java | 158 NativeRef.EC_GROUP groupRef, NativeRef.EC_POINT pubkeyRef, byte[] privkey); in EVP_PKEY_new_EC_KEY() 166 static native String EC_GROUP_get_curve_name(NativeRef.EC_GROUP groupRef); in EC_GROUP_get_curve_name() 168 static native byte[][] EC_GROUP_get_curve(NativeRef.EC_GROUP groupRef); in EC_GROUP_get_curve() 171 static native void EC_GROUP_clear_free(long groupRef); in EC_GROUP_clear_free() 173 static native long EC_GROUP_get_generator(NativeRef.EC_GROUP groupRef); in EC_GROUP_get_generator() 175 static native byte[] EC_GROUP_get_order(NativeRef.EC_GROUP groupRef); in EC_GROUP_get_order() 177 static native int EC_GROUP_get_degree(NativeRef.EC_GROUP groupRef); in EC_GROUP_get_degree() 179 static native byte[] EC_GROUP_get_cofactor(NativeRef.EC_GROUP groupRef); in EC_GROUP_get_cofactor() 181 static native long EC_POINT_new(NativeRef.EC_GROUP groupRef); in EC_POINT_new() 187 NativeRef.EC_GROUP groupRef, NativeRef.EC_POINT pointRef); in EC_POINT_get_affine_coordinates() [all …]
|
/external/conscrypt/common/src/jni/main/cpp/conscrypt/ |
D | native_crypto.cc | 984 static jlong NativeCrypto_EVP_PKEY_new_EC_KEY(JNIEnv* env, jclass, jobject groupRef, in NativeCrypto_EVP_PKEY_new_EC_KEY() 1323 jobject groupRef) { in NativeCrypto_getECPrivateKeyWrapper() 1769 static jstring NativeCrypto_EC_GROUP_get_curve_name(JNIEnv* env, jclass, jobject groupRef) { in NativeCrypto_EC_GROUP_get_curve_name() 1790 static jobjectArray NativeCrypto_EC_GROUP_get_curve(JNIEnv* env, jclass, jobject groupRef) { in NativeCrypto_EC_GROUP_get_curve() 1836 static jbyteArray NativeCrypto_EC_GROUP_get_order(JNIEnv* env, jclass, jobject groupRef) { in NativeCrypto_EC_GROUP_get_order() 1866 static jint NativeCrypto_EC_GROUP_get_degree(JNIEnv* env, jclass, jobject groupRef) { in NativeCrypto_EC_GROUP_get_degree() 1886 static jbyteArray NativeCrypto_EC_GROUP_get_cofactor(JNIEnv* env, jclass, jobject groupRef) { in NativeCrypto_EC_GROUP_get_cofactor() 1916 static void NativeCrypto_EC_GROUP_clear_free(JNIEnv* env, jclass, jlong groupRef) { in NativeCrypto_EC_GROUP_clear_free() 1931 static jlong NativeCrypto_EC_GROUP_get_generator(JNIEnv* env, jclass, jobject groupRef) { in NativeCrypto_EC_GROUP_get_generator() 1954 static jlong NativeCrypto_EC_POINT_new(JNIEnv* env, jclass, jobject groupRef) { in NativeCrypto_EC_POINT_new() [all …]
|
/external/conscrypt/openjdk/src/test/java/org/conscrypt/ |
D | NativeCryptoTest.java | 2825 long groupRef = NativeCrypto.EC_GROUP_new_by_curve_name(name); in check_EC_GROUP() local 2899 NativeRef.EC_GROUP groupRef = new NativeRef.EC_GROUP(groupCtx); in test_ECDH_compute_key_null_key_Failure() local
|
/external/conscrypt/repackaged/openjdk/src/test/java/com/android/org/conscrypt/ |
D | NativeCryptoTest.java | 2833 long groupRef = NativeCrypto.EC_GROUP_new_by_curve_name(name); in check_EC_GROUP() local 2907 NativeRef.EC_GROUP groupRef = new NativeRef.EC_GROUP(groupCtx); in test_ECDH_compute_key_null_key_Failure() local
|