Skip to content

Commit

Permalink
aes intrinsics are optional
Browse files Browse the repository at this point in the history
  • Loading branch information
mku11 committed Mar 12, 2023
1 parent 38ac9f0 commit 5503fbf
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion android/app/SalmonNative/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ android {
externalNativeBuild {
cmake {
// uncomment this line to build AES intrinsics
path "../../make/CMakeLists.txt"
// path "../../make/CMakeLists.txt"
version "3.18.1"
}
}
Expand Down
2 changes: 1 addition & 1 deletion android/src/com/mku11/salmon/config/Config.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
package com.mku11.salmon.config;

public class Config {
public static final boolean enableNativeLib = true;
public static final boolean enableNativeLib = false;
}
2 changes: 1 addition & 1 deletion javafx/src/com/mku11/salmon/vault/config/Config.java
Original file line number Diff line number Diff line change
Expand Up @@ -34,5 +34,5 @@ public class Config {

// set to true to enable the AES intrinsics
// make sure you read the README.md file
public static final boolean enableNativeLib = true;
public static final boolean enableNativeLib = false;
}

0 comments on commit 5503fbf

Please sign in to comment.