aboutsummaryrefslogtreecommitdiffstats
path: root/src/hash/md4
diff options
context:
space:
mode:
Diffstat (limited to 'src/hash/md4')
-rw-r--r--src/hash/md4/md4.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/hash/md4/md4.h b/src/hash/md4/md4.h
index 0bff5a4ce..843727f6d 100644
--- a/src/hash/md4/md4.h
+++ b/src/hash/md4/md4.h
@@ -27,8 +27,8 @@ class BOTAN_DLL MD4 : public MDx_HashFunction
void hash_old(const byte[]);
void copy_out(byte[]);
- SecureBuffer<u32bit, 16> M;
- SecureBuffer<u32bit, 4> digest;
+ SecureVector<u32bit, 16> M;
+ SecureVector<u32bit, 4> digest;
};
}