Renamed class GCryptWrapper to GWrapper

This commit is contained in:
Leonetienne
2022-05-22 13:07:40 +02:00
parent cf784ca8ac
commit bb76cbb2d7
3 changed files with 13 additions and 14 deletions

View File

@@ -8,7 +8,7 @@ namespace Leonetienne::GCrypt {
/** This class is a wrapper to make working with the GhettoCipher
* super easy with a python-like syntax
*/
class GCryptWrapper {
class GWrapper {
public:
//! Will encrypt a string and return it hexadecimally encoded.
static std::string EncryptString(const std::string& cleartext, const std::string& password);
@@ -33,9 +33,8 @@ namespace Leonetienne::GCrypt {
private:
// No instanciation! >:(
GCryptWrapper();
GWrapper();
};
}