diff options
Diffstat (limited to 'src/crypter.h')
-rw-r--r-- | src/crypter.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/crypter.h b/src/crypter.h index 6f75170bac..04538a3fa5 100644 --- a/src/crypter.h +++ b/src/crypter.h @@ -76,8 +76,8 @@ public: void CleanKey() { - OPENSSL_cleanse(chKey, sizeof(chKey)); - OPENSSL_cleanse(chIV, sizeof(chIV)); + memset(&chKey, 0, sizeof chKey); + memset(&chIV, 0, sizeof chIV); fKeySet = false; } |