summaryrefslogtreecommitdiff
path: root/jni
diff options
context:
space:
mode:
authorArne Schwabe <arne@rfc2549.org>2013-04-02 00:46:15 +0200
committerArne Schwabe <arne@rfc2549.org>2013-04-02 00:46:15 +0200
commitf7d1fd7b6be69c006e9991b3e592c491284e28a9 (patch)
treeb6aa7c4d8c64da591924573dbf21f361ba335895 /jni
parent7d6c9bb3c0c13bb608da0217d13db636a88b9c0e (diff)
Fix stupid bug in naming native library (fixes 4.1)
Diffstat (limited to 'jni')
-rw-r--r--jni/jbcrypto.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/jni/jbcrypto.cpp b/jni/jbcrypto.cpp
index 97bc5e70..7413a313 100644
--- a/jni/jbcrypto.cpp
+++ b/jni/jbcrypto.cpp
@@ -41,7 +41,7 @@ int jniThrowException(JNIEnv* env, const char* className, const char* msg) {
}
-jbyteArray Java_de_blinkt_openvpn_VpnProfile_rsasign(JNIEnv* env, jclass, jbyteArray from, jint pkeyRef) {
+jbyteArray Java_de_blinkt_openvpn_core_NativeUtils_rsasign (JNIEnv* env, jclass, jbyteArray from, jint pkeyRef) {
// EVP_MD_CTX* ctx = reinterpret_cast<EVP_MD_CTX*>(ctxRef);
EVP_PKEY* pkey = reinterpret_cast<EVP_PKEY*>(pkeyRef);