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
+3 -5
View File
@@ -9,16 +9,14 @@ class Cryption
public:
Cryption();
Cryption(const std::string&);
void setMessage(const std::string&);
//void setMessage(const std::string&);
std::string getMessage() const;
protected:
void setMessage(const std::string&);
std::string message;
std::fstream ioEvent;
private:
};
#endif