Changed from ASCII cryption to key Cryption

This commit is contained in:
monde
2017-04-25 13:05:01 -05:00
parent c82d81fdc1
commit fbee689234
12 changed files with 1700 additions and 329 deletions
+1 -2
View File
@@ -9,7 +9,6 @@
class Encryption : public Cryption
{
public:
Encryption();
Encryption(const std::string&);
@@ -19,7 +18,7 @@ public:
std::string getEncryptedMessage() const;
private:
std::string encryptedMessage;
std::string encryptedMessage{};
};
#endif