We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 56b795a commit 7199341Copy full SHA for 7199341
1 file changed
src/main/java/com/wolfssl/provider/jce/WolfCryptCipher.java
@@ -1987,6 +1987,16 @@ protected void finalize() throws Throwable {
1987
this.aesEcb = null;
1988
}
1989
1990
+ if (this.aesCtr != null) {
1991
+ this.aesCtr.releaseNativeStruct();
1992
+ this.aesCtr = null;
1993
+ }
1994
+
1995
+ if (this.aesOfb != null) {
1996
+ this.aesOfb.releaseNativeStruct();
1997
+ this.aesOfb = null;
1998
1999
2000
if (this.aesGcm != null) {
2001
this.aesGcm.releaseNativeStruct();
2002
this.aesGcm = null;
0 commit comments