summaryrefslogtreecommitdiff
path: root/src/de/blinkt/openvpn/core/NativeUtils.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/de/blinkt/openvpn/core/NativeUtils.java')
-rw-r--r--src/de/blinkt/openvpn/core/NativeUtils.java13
1 files changed, 0 insertions, 13 deletions
diff --git a/src/de/blinkt/openvpn/core/NativeUtils.java b/src/de/blinkt/openvpn/core/NativeUtils.java
deleted file mode 100644
index a2c4796d..00000000
--- a/src/de/blinkt/openvpn/core/NativeUtils.java
+++ /dev/null
@@ -1,13 +0,0 @@
-package de.blinkt.openvpn.core;
-
-import java.security.InvalidKeyException;
-
-public class NativeUtils {
- public static native byte[] rsasign(byte[] input,int pkey) throws InvalidKeyException;
- static native void jniclose(int fdint);
-
- static {
- System.loadLibrary("stlport_shared");
- System.loadLibrary("opvpnutil");
- }
-}