Update documentation

pull/548/head
Jeffrey Walton 2017-11-26 01:59:06 -05:00
parent c518b31ae8
commit d19ef1c716
No known key found for this signature in database
GPG Key ID: B36AB348921B1838
4 changed files with 4 additions and 4 deletions

2
mdc.h
View File

@ -22,7 +22,7 @@ struct MDC_Info : public FixedBlockSize<B::DIGESTSIZE>, public FixedKeyLength<B:
}; };
//! \brief MDC cipher //! \brief MDC cipher
//! \tparam T HashTransformation derived class //! \tparam H HashTransformation derived class
//! \details MDC() is a construction by Peter Gutmann to turn an iterated hash function into a PRF //! \details MDC() is a construction by Peter Gutmann to turn an iterated hash function into a PRF
//! \sa <a href="http://www.cryptopp.com/wiki/MDC">MDC</a> //! \sa <a href="http://www.cryptopp.com/wiki/MDC">MDC</a>
template <class H> template <class H>

View File

@ -637,7 +637,7 @@ protected:
//! \brief Trapdoor Function (TF) signature with external reference //! \brief Trapdoor Function (TF) signature with external reference
//! \tparam BASE base class //! \tparam BASE base class
//! \tparam SCHEME_OPTIONS scheme options class //! \tparam SCHEME_OPTIONS scheme options class
//! \tparam KEY_CLASS key class //! \tparam KEY key class
//! \details TF_ObjectImplExtRef() holds a pointer to an external key structure //! \details TF_ObjectImplExtRef() holds a pointer to an external key structure
template <class BASE, class SCHEME_OPTIONS, class KEY> template <class BASE, class SCHEME_OPTIONS, class KEY>
class TF_ObjectImplExtRef : public TF_ObjectImplBase<BASE, SCHEME_OPTIONS, KEY> class TF_ObjectImplExtRef : public TF_ObjectImplBase<BASE, SCHEME_OPTIONS, KEY>

View File

@ -37,7 +37,7 @@ struct SIMON_Info : public FixedBlockSize<BS>, VariableKeyLength<D, N, M>
//! \class SIMON_Base //! \class SIMON_Base
//! \brief SIMON block cipher base class //! \brief SIMON block cipher base class
//! \tparam BS block size of the cipher, in bytes //! \tparam W the word type
//! \details User code should use SIMON64 or SIMON128 //! \details User code should use SIMON64 or SIMON128
//! \sa SIMON64, SIMON128, <a href="http://www.cryptopp.com/wiki/SIMON">SIMON</a> on the Crypto++ wiki //! \sa SIMON64, SIMON128, <a href="http://www.cryptopp.com/wiki/SIMON">SIMON</a> on the Crypto++ wiki
//! \since Crypto++ 6.0 //! \since Crypto++ 6.0

View File

@ -41,7 +41,7 @@ struct SPECK_Info : public FixedBlockSize<BS>, VariableKeyLength<D, N, M>
//! \class SPECK_Base //! \class SPECK_Base
//! \brief SPECK block cipher base class //! \brief SPECK block cipher base class
//! \tparam BS block size of the cipher, in bytes //! \tparam W the word type
//! \details User code should use SPECK64 or SPECK128 //! \details User code should use SPECK64 or SPECK128
//! \sa SPECK64, SPECK128, <a href="http://www.cryptopp.com/wiki/SPECK">SPECK</a> //! \sa SPECK64, SPECK128, <a href="http://www.cryptopp.com/wiki/SPECK">SPECK</a>
//! \since Crypto++ 6.0 //! \since Crypto++ 6.0