aboutsummaryrefslogtreecommitdiffstats
path: root/src/hash/sha2
diff options
context:
space:
mode:
Diffstat (limited to 'src/hash/sha2')
-rw-r--r--src/hash/sha2/sha2_32.cpp2
-rw-r--r--src/hash/sha2/sha2_64.cpp2
2 files changed, 2 insertions, 2 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)
{
diff --git a/src/hash/sha2/sha2_64.cpp b/src/hash/sha2/sha2_64.cpp
index aecf9a0db..5ca78173c 100644
--- a/src/hash/sha2/sha2_64.cpp
+++ b/src/hash/sha2/sha2_64.cpp
@@ -55,7 +55,7 @@ void sha2_64_compress(MemoryRegion<u64bit>& 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 != 80; j += 8)
{