From 23279dcd459c785ab3c413dd6ca5746c19e5bee1 Mon Sep 17 00:00:00 2001 From: Jeffrey Walton Date: Sun, 14 Oct 2018 08:21:56 -0400 Subject: Update documentation --- cham.h | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'cham.h') diff --git a/cham.h b/cham.h index 987e99d7..dc4c0474 100644 --- a/cham.h +++ b/cham.h @@ -31,6 +31,10 @@ NAMESPACE_BEGIN(CryptoPP) /// \since Crypto++ 7.1 struct CHAM64_Info : public FixedBlockSize<8>, public FixedKeyLength<16> { + /// \brief The algorithm name + /// \returns the algorithm name + /// \details StaticAlgorithmName returns the algorithm's name as a static + /// member function. static const std::string StaticAlgorithmName() { // Format is Cipher-Blocksize @@ -42,6 +46,10 @@ struct CHAM64_Info : public FixedBlockSize<8>, public FixedKeyLength<16> /// \since Crypto++ 7.1 struct CHAM128_Info : public FixedBlockSize<16>, public VariableKeyLength<16,16,32,16> { + /// \brief The algorithm name + /// \returns the algorithm name + /// \details StaticAlgorithmName returns the algorithm's name as a static + /// member function. static const std::string StaticAlgorithmName() { // Format is Cipher-Blocksize -- cgit v1.2.1