aboutsummaryrefslogtreecommitdiffstats
path: root/src/hash/sha2/sha2_64.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/hash/sha2/sha2_64.h')
-rw-r--r--src/hash/sha2/sha2_64.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/hash/sha2/sha2_64.h b/src/hash/sha2/sha2_64.h
index 004f8f165..9cd79ae1b 100644
--- a/src/hash/sha2/sha2_64.h
+++ b/src/hash/sha2/sha2_64.h
@@ -17,7 +17,10 @@ class BOTAN_DLL SHA_384_512_BASE : public MDx_HashFunction
{
protected:
void clear() throw();
- SHA_384_512_BASE(u32bit out) : MDx_HashFunction(out, 128, true, true, 16) {}
+
+ SHA_384_512_BASE(u32bit out) :
+ MDx_HashFunction(out, 128, true, true, 16) {}
+
SecureBuffer<u64bit, 8> digest;
private:
void hash(const byte[]);