aboutsummaryrefslogtreecommitdiffstats
path: root/src/hash/sha1/sha160.h
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/sha1/sha160.h
parent05edb9f3e52ce18d0833d612fcfebf1442f859ea (diff)
Doxygen
Diffstat (limited to 'src/hash/sha1/sha160.h')
-rw-r--r--src/hash/sha1/sha160.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/hash/sha1/sha160.h b/src/hash/sha1/sha160.h
index 3038039cf..c3b264861 100644
--- a/src/hash/sha1/sha160.h
+++ b/src/hash/sha1/sha160.h
@@ -44,7 +44,14 @@ class BOTAN_DLL SHA_160 : public MDx_HashFunction
void compress_n(const byte[], size_t blocks);
void copy_out(byte[]);
+ /**
+ * The digest value, exposed for use by subclasses (asm, SSE2)
+ */
SecureVector<u32bit> digest;
+
+ /**
+ * The message buffer, exposed for use by subclasses (asm, SSE2)
+ */
SecureVector<u32bit> W;
};