18 lines
260 B
C++
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;
|
|
}
|