aboutsummaryrefslogtreecommitdiffstats
path: root/checks/algos.cpp
diff options
context:
space:
mode:
authorlloyd <[email protected]>2008-06-07 16:56:21 +0000
committerlloyd <[email protected]>2008-06-07 16:56:21 +0000
commit0875f4f0d1f16814b784a4ac08f4d631890b3d6e (patch)
tree16d04004d253f4d6408e9221dd4bc39d47841067 /checks/algos.cpp
parentb0c6cb743534d68ec1af45dc5104da4bf152173d (diff)
Add a full set of tests for the ANSI X9.31 PRNG, using data taken
from the NIST CAVS dataset, taken on June 7 2008 from http://csrc.nist.gov/groups/STM/cavp/standards.html AES-128, AES-192, AES-256, and 2 and 3-key TripleDES variants are all tested.
Diffstat (limited to 'checks/algos.cpp')
-rw-r--r--checks/algos.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/checks/algos.cpp b/checks/algos.cpp
index f9d8dc0aa..c9a322eb9 100644
--- a/checks/algos.cpp
+++ b/checks/algos.cpp
@@ -81,8 +81,8 @@ std::vector<algorithm> get_algos()
algos.push_back(algorithm("MAC", "HMAC(SHA-1)", 16));
algos.push_back(algorithm("MAC", "X9.19-MAC", 16));
- algos.push_back(algorithm("RNG", "Randpool"));
- algos.push_back(algorithm("RNG", "X9.31-RNG"));
+ algos.push_back(algorithm("RNG", "Randpool", 4096));
+ algos.push_back(algorithm("RNG", "X9.31-RNG", 4096));
algos.push_back(algorithm("Codec", "Base64_Encode"));
algos.push_back(algorithm("Codec", "Base64_Decode"));