diff options
Diffstat (limited to 'src/hash/sha2/sha2_32.cpp')
-rw-r--r-- | src/hash/sha2/sha2_32.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/hash/sha2/sha2_32.cpp b/src/hash/sha2/sha2_32.cpp index a18a4d8c4..acd06061e 100644 --- a/src/hash/sha2/sha2_32.cpp +++ b/src/hash/sha2/sha2_32.cpp @@ -56,7 +56,7 @@ void sha2_32_compress(MemoryRegion<u32bit>& W, for(u32bit i = 0; i != blocks; ++i) { - load_be(W.begin(), input, 16); + load_be(&W[0], input, 16); for(u32bit j = 16; j != 64; j += 8) { |