diff options
Diffstat (limited to 'src/rng/hmac_rng/hmac_rng.cpp')
-rw-r--r-- | src/rng/hmac_rng/hmac_rng.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rng/hmac_rng/hmac_rng.cpp b/src/rng/hmac_rng/hmac_rng.cpp index b9bd65ae1..eb67c7f4e 100644 --- a/src/rng/hmac_rng/hmac_rng.cpp +++ b/src/rng/hmac_rng/hmac_rng.cpp @@ -48,7 +48,7 @@ void HMAC_RNG::randomize(byte out[], u32bit length) const u32bit copied = std::min(K.size(), length); - copy_mem(out, K.begin(), copied); + copy_mem(out, &K[0], copied); out += copied; length -= copied; } |