summaryrefslogtreecommitdiff
path: root/main/src/main/java/de/blinkt/openvpn/core/NativeUtils.java
diff options
context:
space:
mode:
authorArne Schwabe <arne@rfc2549.org>2021-10-09 18:07:22 +0200
committerArne Schwabe <arne@rfc2549.org>2021-10-09 18:07:22 +0200
commitab67684d37a81077312df6e894f282a9b83879dd (patch)
tree0aff5f2676afd0f7837e047576384b2cd2356c7e /main/src/main/java/de/blinkt/openvpn/core/NativeUtils.java
parentca5473055a379519b81ffad2881a7cdc2bf77ef6 (diff)
Use coroutines instead AsyncTask in OpenSSL Speed test
Diffstat (limited to 'main/src/main/java/de/blinkt/openvpn/core/NativeUtils.java')
-rw-r--r--main/src/main/java/de/blinkt/openvpn/core/NativeUtils.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/main/src/main/java/de/blinkt/openvpn/core/NativeUtils.java b/main/src/main/java/de/blinkt/openvpn/core/NativeUtils.java
index d8315c9f..ecfa86ff 100644
--- a/main/src/main/java/de/blinkt/openvpn/core/NativeUtils.java
+++ b/main/src/main/java/de/blinkt/openvpn/core/NativeUtils.java
@@ -32,7 +32,7 @@ public class NativeUtils {
public static native String getOpenVPN3GitVersion();
public final static int[] openSSLlengths = {
- 16, 64, 256, 1024, 8 * 1024, 16 * 1024
+ 16, 64, 256, 1024, 1500, 8 * 1024, 16 * 1024
};
public static native double[] getOpenSSLSpeed(String algorithm, int testnum);