We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5177645 commit ea2cf25Copy full SHA for ea2cf25
src/main/java/com/wolfssl/wolfcrypt/WolfObject.java
@@ -64,14 +64,14 @@ public class WolfObject {
64
/* Load wolfcryptjni library */
65
System.loadLibrary("wolfcryptjni");
66
67
+ /* initialize native wolfCrypt library */
68
+ init();
69
+
70
/* Run FIPS CAST if we are in FIPS mode. Will only forcefully
71
* be run once - Fips class keeps track of a successful run. */
72
if (Fips.enabled) {
73
Fips.runAllCast_fips();
74
}
-
- /* initialize native wolfCrypt library */
- init();
75
76
77
/**
0 commit comments