Home | History | Annotate | Download | only in native

Lines Matching refs:groupRef

2242 static jlong NativeCrypto_EVP_PKEY_new_EC_KEY(JNIEnv* env, jclass, jlong groupRef,
2244 const EC_GROUP* group = reinterpret_cast<const EC_GROUP*>(groupRef);
2615 static jlong NativeCrypto_getECPrivateKeyWrapper(JNIEnv* env, jclass, jobject javaKey, jlong groupRef) {
2616 const EC_GROUP* group = reinterpret_cast<const EC_GROUP*>(groupRef);
3229 static void NativeCrypto_EC_GROUP_set_asn1_flag(JNIEnv* env, jclass, jlong groupRef,
3232 EC_GROUP* group = reinterpret_cast<EC_GROUP*>(groupRef);
3246 jlong groupRef, jint form)
3248 EC_GROUP* group = reinterpret_cast<EC_GROUP*>(groupRef);
3305 static jlong NativeCrypto_EC_GROUP_dup(JNIEnv* env, jclass, jlong groupRef) {
3306 const EC_GROUP* group = reinterpret_cast<const EC_GROUP*>(groupRef);
3320 static jstring NativeCrypto_EC_GROUP_get_curve_name(JNIEnv* env, jclass, jlong groupRef) {
3321 const EC_GROUP* group = reinterpret_cast<const EC_GROUP*>(groupRef);
3341 static jobjectArray NativeCrypto_EC_GROUP_get_curve(JNIEnv* env, jclass, jlong groupRef)
3343 const EC_GROUP* group = reinterpret_cast<const EC_GROUP*>(groupRef);
3394 static jbyteArray NativeCrypto_EC_GROUP_get_order(JNIEnv* env, jclass, jlong groupRef)
3396 const EC_GROUP* group = reinterpret_cast<const EC_GROUP*>(groupRef);
3421 static jint NativeCrypto_EC_GROUP_get_degree(JNIEnv* env, jclass, jlong groupRef)
3423 const EC_GROUP* group = reinterpret_cast<const EC_GROUP*>(groupRef);
3437 static jbyteArray NativeCrypto_EC_GROUP_get_cofactor(JNIEnv* env, jclass, jlong groupRef)
3439 const EC_GROUP* group = reinterpret_cast<const EC_GROUP*>(groupRef);
3464 static jint NativeCrypto_get_EC_GROUP_type(JNIEnv* env, jclass, jlong groupRef)
3466 const EC_GROUP* group = reinterpret_cast<const EC_GROUP*>(groupRef);
3479 static void NativeCrypto_EC_GROUP_clear_free(JNIEnv* env, jclass, jlong groupRef)
3481 EC_GROUP* group = reinterpret_cast<EC_GROUP*>(groupRef);
3512 static void NativeCrypto_EC_GROUP_set_generator(JNIEnv* env, jclass, jlong groupRef, jlong pointRef, jbyteArray njavaBytes, jbyteArray hjavaBytes)
3514 EC_GROUP* group = reinterpret_cast<EC_GROUP*>(groupRef);
3545 static jlong NativeCrypto_EC_GROUP_get_generator(JNIEnv* env, jclass, jlong groupRef)
3547 const EC_GROUP* group = reinterpret_cast<const EC_GROUP*>(groupRef);
3569 static jlong NativeCrypto_EC_POINT_new(JNIEnv* env, jclass, jlong groupRef)
3571 const EC_GROUP* group = reinterpret_cast<const EC_GROUP*>(groupRef);
3589 static void NativeCrypto_EC_POINT_clear_free(JNIEnv* env, jclass, jlong groupRef) {
3590 EC_POINT* group = reinterpret_cast<EC_POINT*>(groupRef);
3603 static jboolean NativeCrypto_EC_POINT_cmp(JNIEnv* env, jclass, jlong groupRef, jlong point1Ref, jlong point2Ref)
3605 const EC_GROUP* group = reinterpret_cast<const EC_GROUP*>(groupRef);
3624 jlong groupRef, jlong pointRef, jbyteArray xjavaBytes, jbyteArray yjavaBytes)
3626 const EC_GROUP* group = reinterpret_cast<const EC_GROUP*>(groupRef);
3671 static jobjectArray NativeCrypto_EC_POINT_get_affine_coordinates(JNIEnv* env, jclass, jlong groupRef,
3674 const EC_GROUP* group = reinterpret_cast<const EC_GROUP*>(groupRef);
3720 static jlong NativeCrypto_EC_KEY_generate_key(JNIEnv* env, jclass, jlong groupRef)
3722 const EC_GROUP* group = reinterpret_cast<const EC_GROUP*>(groupRef);