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