aboutsummaryrefslogtreecommitdiffstats
path: root/checks
diff options
context:
space:
mode:
authorlloyd <[email protected]>2013-12-10 03:30:24 +0000
committerlloyd <[email protected]>2013-12-10 03:30:24 +0000
commit748d7fd4b622ee3c9d95343e02ed945c217507f7 (patch)
treed2d1d58147b5b723b37f02133735ebca9bebd6ad /checks
parent4874b0727843bba925bcd3b5c0659c5f1cb059d9 (diff)
s/default_nonce_size/default_nonce_length/
Diffstat (limited to 'checks')
-rw-r--r--checks/transform.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/checks/transform.cpp b/checks/transform.cpp
index 292bcf467..70d86541e 100644
--- a/checks/transform.cpp
+++ b/checks/transform.cpp
@@ -62,7 +62,7 @@ void time_transform(const std::string& algo)
AutoSeeded_RNG rng;
tf->set_key(rng.random_vec(tf->maximum_keylength()));
- tf->start_vec(rng.random_vec(tf->default_nonce_size()));
+ tf->start_vec(rng.random_vec(tf->default_nonce_length()));
for(size_t mult : { 1, 2, 4, 8, 16, 128, 1024 })
{