diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/randpool.h | 2 | ||||
-rw-r--r-- | include/x931_rng.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/include/randpool.h b/include/randpool.h index dc8750dc3..e73ba7f3e 100644 --- a/include/randpool.h +++ b/include/randpool.h @@ -17,7 +17,7 @@ namespace Botan { class BOTAN_DLL Randpool : public RandomNumberGenerator { public: - void randomize(byte[], u32bit) throw(PRNG_Unseeded); + void randomize(byte[], u32bit); bool is_seeded() const; void clear() throw(); std::string name() const; diff --git a/include/x931_rng.h b/include/x931_rng.h index 3bb15ed6f..0076bb3f7 100644 --- a/include/x931_rng.h +++ b/include/x931_rng.h @@ -17,7 +17,7 @@ namespace Botan { class BOTAN_DLL ANSI_X931_RNG : public RandomNumberGenerator { public: - void randomize(byte[], u32bit) throw(PRNG_Unseeded); + void randomize(byte[], u32bit); bool is_seeded() const; void clear() throw(); std::string name() const; |