summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lsh256.cpp2
-rw-r--r--lsh512.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/lsh256.cpp b/lsh256.cpp
index cc1098ce..0f895bb4 100644
--- a/lsh256.cpp
+++ b/lsh256.cpp
@@ -28,7 +28,7 @@ const unsigned int LSH256_HASH_VAL_MAX_BYTE_LEN = 32;
// const unsigned int MSG_BLK_WORD_LEN = 32;
const unsigned int CV_WORD_LEN = 16;
const unsigned int CONST_WORD_LEN = 8;
-// const unsigned int HASH_VAL_MAX_WORD_LEN = 8;
+const unsigned int HASH_VAL_MAX_WORD_LEN = 8;
// const unsigned int WORD_BIT_LEN = 32;
const unsigned int NUM_STEPS = 26;
diff --git a/lsh512.cpp b/lsh512.cpp
index f96c3259..8f24f3ba 100644
--- a/lsh512.cpp
+++ b/lsh512.cpp
@@ -29,7 +29,7 @@ const unsigned int LSH512_HASH_VAL_MAX_BYTE_LEN = 64;
// const unsigned int MSG_BLK_WORD_LEN = 32;
const unsigned int CV_WORD_LEN = 16;
const unsigned int CONST_WORD_LEN = 8;
-// const unsigned int HASH_VAL_MAX_WORD_LEN = 8;
+const unsigned int HASH_VAL_MAX_WORD_LEN = 8;
const unsigned int NUM_STEPS = 28;
const unsigned int ROT_EVEN_ALPHA = 23;