aboutsummaryrefslogtreecommitdiffstats
path: root/src/hash/md2/md2.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/hash/md2/md2.cpp')
-rw-r--r--src/hash/md2/md2.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/hash/md2/md2.cpp b/src/hash/md2/md2.cpp
index 7d0ab0ab0..b3ccae6df 100644
--- a/src/hash/md2/md2.cpp
+++ b/src/hash/md2/md2.cpp
@@ -99,9 +99,9 @@ void MD2::final_result(byte output[])
*/
void MD2::clear()
{
- X.clear();
- checksum.clear();
- buffer.clear();
+ zeroise(X);
+ zeroise(checksum);
+ zeroise(buffer);
position = 0;
}