summaryrefslogtreecommitdiff
path: root/safer.h
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2016-09-06 05:03:17 -0400
committerJeffrey Walton <noloader@gmail.com>2016-09-06 05:03:17 -0400
commit2a51576adc665121921b56e011ae437cb0d69cfa (patch)
treef8e723c60b5be87aa74e3970fc0b636aff7a69a1 /safer.h
parentdb701719c743b737c96d4770fe4a04242cb9e6bb (diff)
downloadcryptopp-git-2a51576adc665121921b56e011ae437cb0d69cfa.tar.gz
Updated documentation
Diffstat (limited to 'safer.h')
-rw-r--r--safer.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/safer.h b/safer.h
index a9150284..0a6cb064 100644
--- a/safer.h
+++ b/safer.h
@@ -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>
{