Added classes for Encryption and Decryption

This commit is contained in:
amazing-username
2017-03-24 13:00:56 -05:00
parent 80d6d20b16
commit adc92aae29
13 changed files with 375 additions and 19 deletions
+23
View File
@@ -0,0 +1,23 @@
#ifndef DECRYPTION_H
#define DECRYPTION_H
#include <fstream>
#include <string>
class Decryption
{
public:
Decryption();
void setMessage(const std::string);
void decryptMessage();
std::string getMessage() const;
private:
std::fstream readFromFile;
std::string message;
};
#endif