Simple decryption works Issue #4

This commit is contained in:
monde
2017-04-12 22:39:40 -05:00
parent 063b89cd56
commit f3800a8d7a
5 changed files with 248 additions and 380 deletions
+4
View File
@@ -13,9 +13,13 @@ public:
Decryption();
Decryption(const std::string&);
void setDecryptedMessage(const std::string&);
void decryptMessage();
std::string getDecryptedMessage() const;
private:
std::string decryptedMessage;
};
#endif