Credentials_manager/PasswordManager/cryptographer.cpp
2021-12-24 14:50:15 +03:00

18 lines
260 B
C++

#include "cryptographer.h"
#include <QString>
Cryptographer::Cryptographer(QString key)
{
this->key = key;
}
QString Cryptographer::encrypt(QString message){
return message;
}
QString Cryptographer::decrypt(QString message){
return message;
}