diff options
Diffstat (limited to 'checks/dolook2.cpp')
-rw-r--r-- | checks/dolook2.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/checks/dolook2.cpp b/checks/dolook2.cpp index b49d48a5e..1b7123b30 100644 --- a/checks/dolook2.cpp +++ b/checks/dolook2.cpp @@ -113,7 +113,7 @@ void RNG_Filter::write(const byte[], u32bit length) Filter* lookup_rng(const std::string& algname) { if(algname == "X9.31-RNG") - return new RNG_Filter(new ANSI_X931_RNG); + return new RNG_Filter(new ANSI_X931_RNG("AES-256", new Randpool)); if(algname == "Randpool") return new RNG_Filter(new Randpool); return 0; |