mirror of
https://github.com/shadps4-emu/ext-cryptopp.git
synced 2024-11-23 01:49:41 +00:00
Clear Clang -Wdocumentation warnings
This commit is contained in:
parent
03c4290bdf
commit
1d29d4c15d
@ -64,7 +64,6 @@ public:
|
||||
virtual TimerWord TicksPerSecond() =0;
|
||||
|
||||
/// \brief Start the timer
|
||||
/// \return the current timer value
|
||||
void StartTimer();
|
||||
|
||||
/// \brief Retrieve the elapsed time
|
||||
|
@ -705,8 +705,8 @@ public:
|
||||
/// \param a a constant reference to an Integer
|
||||
/// \return a reference to a std::ostream reference
|
||||
/// \details The output integer responds to std::hex, std::oct, std::hex, std::upper and
|
||||
/// std::lower. The output includes the suffix \a \b h (for hex), \a \b . (\a \b dot, for dec)
|
||||
/// and \a \b o (for octal). There is currently no way to suppress the suffix.
|
||||
/// std::lower. The output includes the suffix \a h (for hex), \a . (\a dot, for dec)
|
||||
/// and \a o (for octal). There is currently no way to suppress the suffix.
|
||||
/// \details If you want to print an Integer without the suffix or using an arbitrary base, then
|
||||
/// use IntToString<Integer>().
|
||||
/// \sa IntToString<Integer>
|
||||
|
4
osrng.h
4
osrng.h
@ -207,12 +207,12 @@ public:
|
||||
|
||||
/// \brief Reseed an AutoSeededX917RNG
|
||||
/// \param blocking controls seeding with BlockingRng or NonblockingRng
|
||||
/// \param additionalEntropy additional entropy to add to the generator
|
||||
/// \param input additional entropy to add to the generator
|
||||
/// \param length the size of the additional entropy, in bytes
|
||||
/// \details Internally, the generator uses SHA256 to extract the entropy from
|
||||
/// from the seed and then stretch the material for the block cipher's key
|
||||
/// and initialization vector.
|
||||
void Reseed(bool blocking = false, const byte *additionalEntropy = NULLPTR, size_t length = 0);
|
||||
void Reseed(bool blocking = false, const byte *input = NULLPTR, size_t length = 0);
|
||||
|
||||
/// \brief Deterministically reseed an AutoSeededX917RNG for testing
|
||||
/// \param key the key to use for the deterministic reseeding
|
||||
|
Loading…
Reference in New Issue
Block a user