aboutsummaryrefslogtreecommitdiffstats
path: root/checks/pk_bench.cpp
diff options
context:
space:
mode:
authorlloyd <[email protected]>2010-09-13 12:28:27 +0000
committerlloyd <[email protected]>2010-09-13 12:28:27 +0000
commit27d79c87365105d6128afe9eaf8a82383976ed44 (patch)
tree9a4f0e1d5ae7ecd5c058c0293d9b546191990cdb /checks/pk_bench.cpp
parent9acfc3a50b31044e48d8dee5fc8030ad7f4518d4 (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 'checks/pk_bench.cpp')
-rw-r--r--checks/pk_bench.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/checks/pk_bench.cpp b/checks/pk_bench.cpp
index 41344f104..41108d9ac 100644
--- a/checks/pk_bench.cpp
+++ b/checks/pk_bench.cpp
@@ -106,7 +106,7 @@ void benchmark_enc_dec(PK_Encryptor& enc, PK_Decryptor& dec,
// Ensure for Raw, etc, it stays large
if((i % 100) == 0)
{
- rng.randomize(plaintext.begin(), plaintext.size());
+ rng.randomize(&plaintext[0], plaintext.size());
plaintext[0] |= 0x80;
}
@@ -143,7 +143,7 @@ void benchmark_sig_ver(PK_Verifier& ver, PK_Signer& sig,
if((i % 100) == 0)
{
message.resize(48);
- rng.randomize(message.begin(), message.size());
+ rng.randomize(&message[0], message.size());
}
sig_timer.start();