diff options
author | lloyd <[email protected]> | 2010-09-13 12:28:27 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2010-09-13 12:28:27 +0000 |
commit | 27d79c87365105d6128afe9eaf8a82383976ed44 (patch) | |
tree | 9a4f0e1d5ae7ecd5c058c0293d9b546191990cdb /src/hash/gost_3411/gost_3411.cpp | |
parent | 9acfc3a50b31044e48d8dee5fc8030ad7f4518d4 (diff) |
Anywhere where we use MemoryRegion::begin to get access to the raw pointer
representation (rather than in an interator context), instead use &buf[0],
which works for both MemoryRegion and std::vector
Diffstat (limited to 'src/hash/gost_3411/gost_3411.cpp')
-rw-r--r-- | src/hash/gost_3411/gost_3411.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/hash/gost_3411/gost_3411.cpp b/src/hash/gost_3411/gost_3411.cpp index 7e6fd8fac..ad874fe8a 100644 --- a/src/hash/gost_3411/gost_3411.cpp +++ b/src/hash/gost_3411/gost_3411.cpp @@ -45,7 +45,7 @@ void GOST_34_11::add_data(const byte input[], u32bit length) if(position + length >= HASH_BLOCK_SIZE) { - compress_n(buffer.begin(), 1); + compress_n(&buffer[0], 1); input += (HASH_BLOCK_SIZE - position); length -= (HASH_BLOCK_SIZE - position); position = 0; @@ -219,7 +219,7 @@ void GOST_34_11::final_result(byte out[]) { if(position) { - clear_mem(buffer.begin() + position, buffer.size() - position); + clear_mem(&buffer[0] + position, buffer.size() - position); compress_n(buffer, 1); } @@ -232,7 +232,7 @@ void GOST_34_11::final_result(byte out[]) compress_n(length_buf, 1); compress_n(sum_buf, 1); - copy_mem(out, hash.begin(), 32); + copy_mem(out, &hash[0], 32); clear(); } |