summaryrefslogtreecommitdiff
path: root/cham.h
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2019-01-31 19:33:13 -0500
committerJeffrey Walton <noloader@gmail.com>2019-01-31 19:33:13 -0500
commitcd395c794326e358a6c0db6d7fa795755df20ae6 (patch)
treee81271f7143b14f955ab94d1787efd60facd0277 /cham.h
parentc415a64a0e08430e5c33542acbb9586c9aa15678 (diff)
downloadcryptopp-git-cd395c794326e358a6c0db6d7fa795755df20ae6.tar.gz
Update documentation
Diffstat (limited to 'cham.h')
-rw-r--r--cham.h12
1 files changed, 10 insertions, 2 deletions
diff --git a/cham.h b/cham.h
index 0d08c90e..75874031 100644
--- a/cham.h
+++ b/cham.h
@@ -95,7 +95,7 @@ public:
#endif
};
- /// \brief Encryption transformation
+ /// \brief Decryption transformation
/// \details Dec provides implementation for decryption transformation. All key and block
/// sizes are supported.
/// \since Crypto++ 8.0
@@ -109,11 +109,15 @@ public:
#endif
};
+ /// \brief CHAM64 encryption
typedef BlockCipherFinal<ENCRYPTION, Enc> Encryption;
+ /// \brief CHAM64 decryption
typedef BlockCipherFinal<DECRYPTION, Dec> Decryption;
};
+/// \brief CHAM64 encryption
typedef CHAM64::Encryption CHAM64Encryption;
+/// \brief CHAM64 decryption
typedef CHAM64::Decryption CHAM64Decryption;
/// \brief CHAM 128-bit block cipher
@@ -154,7 +158,7 @@ public:
#endif
};
- /// \brief Encryption transformation
+ /// \brief Decryption transformation
/// \details Dec provides implementation for decryption transformation. All key and block
/// sizes are supported.
/// \since Crypto++ 8.0
@@ -168,11 +172,15 @@ public:
#endif
};
+ /// \brief CHAM128 encryption
typedef BlockCipherFinal<ENCRYPTION, Enc> Encryption;
+ /// \brief CHAM128 decryption
typedef BlockCipherFinal<DECRYPTION, Dec> Decryption;
};
+/// \brief CHAM128 encryption
typedef CHAM128::Encryption CHAM128Encryption;
+/// \brief CHAM128 decryption
typedef CHAM128::Decryption CHAM128Decryption;
NAMESPACE_END