aboutsummaryrefslogtreecommitdiffstats
path: root/src/hash/md5
diff options
context:
space:
mode:
authorlloyd <[email protected]>2010-11-02 12:33:16 +0000
committerlloyd <[email protected]>2010-11-02 12:33:16 +0000
commit4a361f699573ed3ff128ecc9c654863cd55aaa79 (patch)
tree4e8d4a29abdc937b5dce2c363519429f949e06be /src/hash/md5
parent05edb9f3e52ce18d0833d612fcfebf1442f859ea (diff)
Doxygen
Diffstat (limited to 'src/hash/md5')
-rw-r--r--src/hash/md5/md5.h10
1 files changed, 9 insertions, 1 deletions
diff --git a/src/hash/md5/md5.h b/src/hash/md5/md5.h
index b54beeec4..92c023c92 100644
--- a/src/hash/md5/md5.h
+++ b/src/hash/md5/md5.h
@@ -30,7 +30,15 @@ class BOTAN_DLL MD5 : public MDx_HashFunction
void compress_n(const byte[], 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;
};
}