diff options
Diffstat (limited to 'src/lib/rng/chacha_rng/chacha_rng.h')
-rw-r--r-- | src/lib/rng/chacha_rng/chacha_rng.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/lib/rng/chacha_rng/chacha_rng.h b/src/lib/rng/chacha_rng/chacha_rng.h index b6a763f62..7deaa2d89 100644 --- a/src/lib/rng/chacha_rng/chacha_rng.h +++ b/src/lib/rng/chacha_rng/chacha_rng.h @@ -115,6 +115,8 @@ class BOTAN_DLL ChaCha_RNG final : public Stateful_RNG size_t security_level() const override; + size_t max_number_of_bytes_per_request() const override { return 0; } + private: void update(const uint8_t input[], size_t input_len); |