diff options
author | weidai <weidai11@users.noreply.github.com> | 2010-08-08 23:02:36 +0000 |
---|---|---|
committer | weidai <weidai11@users.noreply.github.com> | 2010-08-08 23:02:36 +0000 |
commit | 045d804f9b6ed6a451af7dc8110e9911bc89e1ea (patch) | |
tree | 44816966e66c99358ac73574f00241d03e5bfd0b /osrng.h | |
parent | 9d42a6f6dee5b8f0784145ea7e596a517555dbfe (diff) | |
download | cryptopp-git-045d804f9b6ed6a451af7dc8110e9911bc89e1ea.tar.gz |
fix compile with GCC 4.4 and -march=i386
fix minor documentation issues
fix compile w/o GAS 2.19 or later
Diffstat (limited to 'osrng.h')
-rw-r--r-- | osrng.h | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -1,6 +1,8 @@ #ifndef CRYPTOPP_OSRNG_H #define CRYPTOPP_OSRNG_H +//! \file + #include "config.h" #ifdef OS_RNG_AVAILABLE @@ -140,6 +142,7 @@ void AutoSeededX917RNG<BLOCK_CIPHER>::Reseed(bool blocking, const byte *input, s CRYPTOPP_DLL_TEMPLATE_CLASS AutoSeededX917RNG<AES>; +//! this is AutoSeededX917RNG\<AES\> in FIPS mode, otherwise it's AutoSeededRandomPool #if CRYPTOPP_ENABLE_COMPLIANCE_WITH_FIPS_140_2 typedef AutoSeededX917RNG<AES> DefaultAutoSeededRNG; #else |