Addressed Issue #10

This commit is contained in:
amazing-username
2018-03-31 15:04:20 -05:00
parent d1662f12fb
commit 30bc1f8245
10 changed files with 67 additions and 65 deletions
-2
View File
@@ -8,7 +8,6 @@
Decryption::Decryption(const string& message)
{
this->message = message;
//setupMap();
decryptMessage();
}
Decryption::Decryption(const Password<>& py, const Key<>& ky)
@@ -34,7 +33,6 @@ void Decryption::decryptMessage()
string messageToBeDecrypted{}, decryptedMessage{};
while(ioEvent >> messageToBeDecrypted);
//std::cout << messageToBeDecrypted << std::endl;
ioEvent.close();