summaryrefslogtreecommitdiff
path: root/dlltest.cpp
diff options
context:
space:
mode:
authorweidai <weidai@57ff6487-cd31-0410-9ec3-f628ee90f5f0>2007-05-04 15:31:46 +0000
committerweidai <weidai@57ff6487-cd31-0410-9ec3-f628ee90f5f0>2007-05-04 15:31:46 +0000
commit2e2c395021dff780ca2041914e0bb745491cb24e (patch)
tree50f99e0d0d7c668de5f22196ac523040ddf92491 /dlltest.cpp
parentf9ff5c3f315c763e5ca05a58f12cff9aca4148d1 (diff)
downloadcryptopp-2e2c395021dff780ca2041914e0bb745491cb24e.tar.gz
change default FIPS RNG to use AES instead of DES_EDE
git-svn-id: svn://svn.code.sf.net/p/cryptopp/code/trunk/c5@335 57ff6487-cd31-0410-9ec3-f628ee90f5f0
Diffstat (limited to 'dlltest.cpp')
-rw-r--r--dlltest.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/dlltest.cpp b/dlltest.cpp
index 85b8bdd..dac9093 100644
--- a/dlltest.cpp
+++ b/dlltest.cpp
@@ -93,7 +93,7 @@ void FIPS140_SampleApplication()
// create auto-seeded X9.17 RNG object, if available
#ifdef OS_RNG_AVAILABLE
- AutoSeededX917RNG<DES_EDE3> rng;
+ AutoSeededX917RNG<AES> rng;
#else
// this is used to allow this function to compile on platforms that don't have auto-seeded RNGs
RandomNumberGenerator &rng(NullRNG());