aboutsummaryrefslogtreecommitdiffstats
path: root/src/math/bigint/big_rand.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/math/bigint/big_rand.cpp')
-rw-r--r--src/math/bigint/big_rand.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/math/bigint/big_rand.cpp b/src/math/bigint/big_rand.cpp
index b641baee2..84ad02587 100644
--- a/src/math/bigint/big_rand.cpp
+++ b/src/math/bigint/big_rand.cpp
@@ -35,8 +35,8 @@ void BigInt::randomize(RandomNumberGenerator& rng,
clear();
else
{
- SecureVector<byte> array((bitsize + 7) / 8);
- rng.randomize(array, array.size());
+ SecureVector<byte> array = rng.random_vec((bitsize + 7) / 8);
+
if(bitsize % 8)
array[0] &= 0xFF >> (8 - (bitsize % 8));
array[0] |= 0x80 >> ((bitsize % 8) ? (8 - bitsize % 8) : 0);