This commit is contained in:
Leonetienne 2022-06-01 02:34:16 +02:00
parent 136e03e65e
commit 855ecaaa2f
No known key found for this signature in database
GPG Key ID: C33879CD92E9708C
2 changed files with 5 additions and 5 deletions

View File

@ -9,8 +9,8 @@
namespace Leonetienne::GCrypt {
/* This class represents a block of data,
* and provides functions to manipulate it
/** This class represents a block of data,
* and provides functions to manipulate it
*/
template <typename T>
class Basic_Block {

View File

@ -5,9 +5,9 @@
namespace Leonetienne::GCrypt {
/* This class represents encryption keys.
You can copy them, create them from data blocks,
or even read from files (to be implemented).
/** This class represents encryption keys.
* You can copy them, create them from data blocks,
* or even read from files.
*/
class Key : public Block {
public: