diff options
author | lloyd <[email protected]> | 2008-09-30 06:47:38 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2008-09-30 06:47:38 +0000 |
commit | 66869d7e0fcaf120f5c22eee43277fabd00e94fd (patch) | |
tree | 5161b89557a8a8cd8f69ee7459368391872980fb /checks/dolook2.cpp | |
parent | 33bb3dca54ecef2599b756d27b66781e14d06ae3 (diff) |
Remove lookup.h from X9.31 PRNG, X9.19 MAC, SSLv3 MAC, PBKDF1
Diffstat (limited to 'checks/dolook2.cpp')
-rw-r--r-- | checks/dolook2.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/checks/dolook2.cpp b/checks/dolook2.cpp index 708d5d2ef..13b14a114 100644 --- a/checks/dolook2.cpp +++ b/checks/dolook2.cpp @@ -121,13 +121,13 @@ Filter* lookup_rng(const std::string& algname, #if defined(BOTAN_HAS_X931_RNG) if(algname == "X9.31-RNG(TripleDES)") - prng = new ANSI_X931_RNG("TripleDES", new Fixed_Output_RNG(decode_hex(key))); + prng = new ANSI_X931_RNG(get_block_cipher("TripleDES"), new Fixed_Output_RNG(decode_hex(key))); else if(algname == "X9.31-RNG(AES-128)") - prng = new ANSI_X931_RNG("AES-128", new Fixed_Output_RNG(decode_hex(key))); + prng = new ANSI_X931_RNG(get_block_cipher("AES-128"), new Fixed_Output_RNG(decode_hex(key))); else if(algname == "X9.31-RNG(AES-192)") - prng = new ANSI_X931_RNG("AES-192", new Fixed_Output_RNG(decode_hex(key))); + prng = new ANSI_X931_RNG(get_block_cipher("AES-192"), new Fixed_Output_RNG(decode_hex(key))); else if(algname == "X9.31-RNG(AES-256)") - prng = new ANSI_X931_RNG("AES-256", new Fixed_Output_RNG(decode_hex(key))); + prng = new ANSI_X931_RNG(get_block_cipher("AES-256"), new Fixed_Output_RNG(decode_hex(key))); #endif #if defined(BOTAN_HAS_X931_RNG) and defined(BOTAN_HAS_RANDPOOL) @@ -143,7 +143,7 @@ Filter* lookup_rng(const std::string& algname, if(algname == "Randpool") prng = randpool; else - prng = new ANSI_X931_RNG("AES-256", randpool); + prng = new ANSI_X931_RNG(get_block_cipher("AES-256"), randpool); } #endif |