Credentials_manager/PasswordManager/cryptographer.cpp
Daniil f21b270cef Cryptographer class created
database table added
2021-12-08 20:31:35 +03:00

18 lines
229 B
C++

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