• Home
  • Raw
  • Download

Lines Matching refs:groupRef

894 static jlong NativeCrypto_EVP_PKEY_new_EC_KEY(JNIEnv* env, jclass, jobject groupRef,  in NativeCrypto_EVP_PKEY_new_EC_KEY()  argument
896 JNI_TRACE("EVP_PKEY_new_EC_KEY(%p, %p, %p)", groupRef, pubkeyRef, keyJavaBytes); in NativeCrypto_EVP_PKEY_new_EC_KEY()
897 const EC_GROUP* group = fromContextObject<EC_GROUP>(env, groupRef); in NativeCrypto_EVP_PKEY_new_EC_KEY()
1203 jobject groupRef) { in NativeCrypto_getECPrivateKeyWrapper() argument
1204 EC_GROUP* group = fromContextObject<EC_GROUP>(env, groupRef); in NativeCrypto_getECPrivateKeyWrapper()
1598 static jstring NativeCrypto_EC_GROUP_get_curve_name(JNIEnv* env, jclass, jobject groupRef) { in NativeCrypto_EC_GROUP_get_curve_name() argument
1599 const EC_GROUP* group = fromContextObject<EC_GROUP>(env, groupRef); in NativeCrypto_EC_GROUP_get_curve_name()
1618 static jobjectArray NativeCrypto_EC_GROUP_get_curve(JNIEnv* env, jclass, jobject groupRef) in NativeCrypto_EC_GROUP_get_curve() argument
1620 const EC_GROUP* group = fromContextObject<EC_GROUP>(env, groupRef); in NativeCrypto_EC_GROUP_get_curve()
1664 static jbyteArray NativeCrypto_EC_GROUP_get_order(JNIEnv* env, jclass, jobject groupRef) in NativeCrypto_EC_GROUP_get_order() argument
1666 const EC_GROUP* group = fromContextObject<EC_GROUP>(env, groupRef); in NativeCrypto_EC_GROUP_get_order()
1694 static jint NativeCrypto_EC_GROUP_get_degree(JNIEnv* env, jclass, jobject groupRef) in NativeCrypto_EC_GROUP_get_degree() argument
1696 const EC_GROUP* group = fromContextObject<EC_GROUP>(env, groupRef); in NativeCrypto_EC_GROUP_get_degree()
1713 static jbyteArray NativeCrypto_EC_GROUP_get_cofactor(JNIEnv* env, jclass, jobject groupRef) in NativeCrypto_EC_GROUP_get_cofactor() argument
1715 const EC_GROUP* group = fromContextObject<EC_GROUP>(env, groupRef); in NativeCrypto_EC_GROUP_get_cofactor()
1743 static void NativeCrypto_EC_GROUP_clear_free(JNIEnv* env, jclass, jlong groupRef) in NativeCrypto_EC_GROUP_clear_free() argument
1745 EC_GROUP* group = reinterpret_cast<EC_GROUP*>(groupRef); in NativeCrypto_EC_GROUP_clear_free()
1758 static jlong NativeCrypto_EC_GROUP_get_generator(JNIEnv* env, jclass, jobject groupRef) in NativeCrypto_EC_GROUP_get_generator() argument
1760 const EC_GROUP* group = fromContextObject<EC_GROUP>(env, groupRef); in NativeCrypto_EC_GROUP_get_generator()
1781 static jlong NativeCrypto_EC_POINT_new(JNIEnv* env, jclass, jobject groupRef) in NativeCrypto_EC_POINT_new() argument
1783 const EC_GROUP* group = fromContextObject<EC_GROUP>(env, groupRef); in NativeCrypto_EC_POINT_new()
1800 static void NativeCrypto_EC_POINT_clear_free(JNIEnv* env, jclass, jlong groupRef) { in NativeCrypto_EC_POINT_clear_free() argument
1801 EC_POINT* group = reinterpret_cast<EC_POINT*>(groupRef); in NativeCrypto_EC_POINT_clear_free()
1815 jobject groupRef, jobject pointRef, jbyteArray xjavaBytes, jbyteArray yjavaBytes) in NativeCrypto_EC_POINT_set_affine_coordinates() argument
1817 JNI_TRACE("EC_POINT_set_affine_coordinates(%p, %p, %p, %p)", groupRef, pointRef, xjavaBytes, in NativeCrypto_EC_POINT_set_affine_coordinates()
1819 const EC_GROUP* group = fromContextObject<EC_GROUP>(env, groupRef); in NativeCrypto_EC_POINT_set_affine_coordinates()
1852 jobject groupRef, jobject pointRef) in NativeCrypto_EC_POINT_get_affine_coordinates() argument
1854 JNI_TRACE("EC_POINT_get_affine_coordinates(%p, %p)", groupRef, pointRef); in NativeCrypto_EC_POINT_get_affine_coordinates()
1855 const EC_GROUP* group = fromContextObject<EC_GROUP>(env, groupRef); in NativeCrypto_EC_POINT_get_affine_coordinates()
1896 static jlong NativeCrypto_EC_KEY_generate_key(JNIEnv* env, jclass, jobject groupRef) in NativeCrypto_EC_KEY_generate_key() argument
1898 const EC_GROUP* group = fromContextObject<EC_GROUP>(env, groupRef); in NativeCrypto_EC_KEY_generate_key()