Renamed ghettocryptwrapper class to gcryptwrapper

This commit is contained in:
Leonetienne
2022-05-16 22:50:52 +02:00
parent 13a7abd82d
commit b998a51e11
4 changed files with 18 additions and 17 deletions

View File

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