summaryrefslogtreecommitdiff
path: root/blumshub.h
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2017-11-29 10:54:33 -0500
committerJeffrey Walton <noloader@gmail.com>2017-11-29 10:54:33 -0500
commit61ec50dabe14c5d4582ac187706ea27645b3562b (patch)
tree18a2eebb7adc8c9556ce132d7081a105fa058d6b /blumshub.h
parent16ebfa72bf130c4725e652e4d3688d97d3feb0ee (diff)
downloadcryptopp-git-61ec50dabe14c5d4582ac187706ea27645b3562b.tar.gz
Change Doxygen comment style from //! to ///
Also see https://groups.google.com/forum/#!topic/cryptopp-users/A7-Xt5Knlzw
Diffstat (limited to 'blumshub.h')
-rw-r--r--blumshub.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/blumshub.h b/blumshub.h
index 54fbc0f0..1827f47b 100644
--- a/blumshub.h
+++ b/blumshub.h
@@ -1,8 +1,8 @@
// blumshub.h - originally written and placed in the public domain by Wei Dai
-//! \file
-//! \headerfile blumshub.h
-//! \brief Classes for Blum Blum Shub generator
+/// \file
+/// \headerfile blumshub.h
+/// \brief Classes for Blum Blum Shub generator
#ifndef CRYPTOPP_BLUMSHUB_H
#define CRYPTOPP_BLUMSHUB_H
@@ -13,7 +13,7 @@
NAMESPACE_BEGIN(CryptoPP)
-//! BlumBlumShub without factorization of the modulus
+/// BlumBlumShub without factorization of the modulus
class PublicBlumBlumShub : public RandomNumberGenerator,
public StreamTransformation
{
@@ -36,7 +36,7 @@ protected:
word maxBits, bitsLeft;
};
-//! BlumBlumShub with factorization of the modulus
+/// BlumBlumShub with factorization of the modulus
class BlumBlumShub : public PublicBlumBlumShub
{
public: