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/md2 | |
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/md2')
-rw-r--r-- | src/hash/md2/md2.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/hash/md2/md2.cpp b/src/hash/md2/md2.cpp index b3ccae6df..376a95e93 100644 --- a/src/hash/md2/md2.cpp +++ b/src/hash/md2/md2.cpp @@ -66,7 +66,7 @@ void MD2::add_data(const byte input[], u32bit length) buffer.copy(position, input, length); if(position + length >= HASH_BLOCK_SIZE) { - hash(buffer.begin()); + hash(&buffer[0]); input += (HASH_BLOCK_SIZE - position); length -= (HASH_BLOCK_SIZE - position); while(length >= HASH_BLOCK_SIZE) @@ -90,7 +90,7 @@ void MD2::final_result(byte output[]) buffer[j] = static_cast<byte>(HASH_BLOCK_SIZE - position); hash(buffer); hash(checksum); - copy_mem(output, X.begin(), OUTPUT_LENGTH); + copy_mem(output, &X[0], OUTPUT_LENGTH); clear(); } |