diff options
Diffstat (limited to 'src/hash/md4/md4.cpp')
-rw-r--r-- | src/hash/md4/md4.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/hash/md4/md4.cpp b/src/hash/md4/md4.cpp index b2870066d..c50c73a8d 100644 --- a/src/hash/md4/md4.cpp +++ b/src/hash/md4/md4.cpp @@ -51,6 +51,7 @@ void MD4::compress_n(const byte input[], u32bit blocks) for(u32bit i = 0; i != blocks; ++i) { + //load_le(M.begin(), input, M.size()); for(u32bit j = 0; j != 16; ++j) M[j] = load_le<u32bit>(input, j); input += HASH_BLOCK_SIZE; |