diff options
author | René Korthaus <[email protected]> | 2016-10-16 17:19:18 +0200 |
---|---|---|
committer | René Korthaus <[email protected]> | 2016-10-19 09:13:34 +0200 |
commit | 446f2a0289cca0de11e748e73071a39c06940239 (patch) | |
tree | c22651dea9e9505341e92fbb33d7b488b6444980 /src/lib/stream/chacha | |
parent | a08e0160301f20e4f5d620a146a1556e0ac7c95d (diff) |
Improve stream doxygen [ci skip]
Diffstat (limited to 'src/lib/stream/chacha')
-rw-r--r-- | src/lib/stream/chacha/chacha.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lib/stream/chacha/chacha.h b/src/lib/stream/chacha/chacha.h index eafeac2fd..6b1c989e2 100644 --- a/src/lib/stream/chacha/chacha.h +++ b/src/lib/stream/chacha/chacha.h @@ -21,7 +21,8 @@ class BOTAN_DLL ChaCha final : public StreamCipher StreamCipher* clone() const override { return new ChaCha(m_rounds); } /** - * Currently only 8, 12 or 20 rounds are supported, all others + * @param rounds number of rounds + * @note Currently only 8, 12 or 20 rounds are supported, all others * will throw an exception */ ChaCha(size_t rounds = 20); |