aboutsummaryrefslogtreecommitdiffstats
path: root/modules/alg_ia32
diff options
context:
space:
mode:
Diffstat (limited to 'modules/alg_ia32')
-rw-r--r--modules/alg_ia32/sha160.cpp8
1 files changed, 8 insertions, 0 deletions
diff --git a/modules/alg_ia32/sha160.cpp b/modules/alg_ia32/sha160.cpp
index 62a5c9635..754f8a01c 100644
--- a/modules/alg_ia32/sha160.cpp
+++ b/modules/alg_ia32/sha160.cpp
@@ -41,4 +41,12 @@ void SHA_160::clear() throw()
digest[4] = 0xC3D2E1F0;
}
+/*************************************************
+* SHA_160 Constructor *
+*************************************************/
+SHA_160::SHA_160() : MDx_HashFunction(20, 64, true, true), W(80)
+ {
+ clear();
+ }
+
}