We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e84ba03 commit 15a8eddCopy full SHA for 15a8edd
1 file changed
src/main/java/com/wolfssl/wolfcrypt/WolfObject.java
@@ -100,8 +100,10 @@ public static boolean isLibraryLoadSkipped() {
100
/* Initialize native wolfCrypt library */
101
init();
102
103
- /* Run FIPS CAST if we are in FIPS mode. Will only forcefully
104
- * be run once - Fips class keeps track of a successful run. */
+ /* Run FIPS CAST if we are in FIPS mode. Will only forcefully be run
+ * once. Fips class keeps track of a successful run. References Fips
105
+ * (a subclass) during WolfObject static init, but is safe because
106
+ * native libraries and init() have completed above. */
107
if (Fips.enabled) {
108
Fips.runAllCast_fips();
109
}
0 commit comments