Updated documentation

pull/131/merge
Jeffrey Walton 2016-09-06 05:03:17 -04:00
parent db701719c7
commit 2a51576adc
1 changed files with 6 additions and 0 deletions

View File

@ -49,6 +49,12 @@ public:
};
};
//! \class SAFER_Impl
//! \brief SAFER block cipher default implementation
//! \tparam BASE SAFER::Enc or SAFER::Dec derived base class
//! \tparam INFO SAFER_Info derived class
//! \tparam STR flag indicating a strengthened implementation
//! \details SAFER-K is not strengthened; while SAFER-SK is strengthened.
template <class BASE, class INFO, bool STR>
class CRYPTOPP_NO_VTABLE SAFER_Impl : public BlockCipherImpl<INFO, BASE>
{