aboutsummaryrefslogtreecommitdiffstats
path: root/src/hash/md2/md2.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/hash/md2/md2.h')
-rw-r--r--src/hash/md2/md2.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/hash/md2/md2.h b/src/hash/md2/md2.h
index 0a7125759..df056dc12 100644
--- a/src/hash/md2/md2.h
+++ b/src/hash/md2/md2.h
@@ -27,8 +27,8 @@ class BOTAN_DLL MD2 : public HashFunction
void hash(const byte[]);
void final_result(byte[]);
- SecureBuffer<byte, 48> X;
- SecureBuffer<byte, 16> checksum, buffer;
+ SecureVector<byte, 48> X;
+ SecureVector<byte, 16> checksum, buffer;
u32bit position;
};