aboutsummaryrefslogtreecommitdiffstats
path: root/src/hash/md4/md4.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/hash/md4/md4.h')
-rw-r--r--src/hash/md4/md4.h10
1 files changed, 9 insertions, 1 deletions
diff --git a/src/hash/md4/md4.h b/src/hash/md4/md4.h
index 182954834..d37dbe3b2 100644
--- a/src/hash/md4/md4.h
+++ b/src/hash/md4/md4.h
@@ -30,7 +30,15 @@ class BOTAN_DLL MD4 : public MDx_HashFunction
void compress_n(const byte input[], size_t blocks);
void copy_out(byte[]);
- SecureVector<u32bit> M, digest;
+ /**
+ * The message buffer, exposed for use by subclasses (x86 asm)
+ */
+ SecureVector<u32bit> M;
+
+ /**
+ * The digest value, exposed for use by subclasses (x86 asm)
+ */
+ SecureVector<u32bit> digest;
};
}