aboutsummaryrefslogtreecommitdiffstats
path: root/src/hash/sha1/sha160.h
diff options
context:
space:
mode:
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;
};