This repository has been archived on 2026-07-02. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
PasswordEncryption/Decryption.h
T
2017-03-24 13:00:56 -05:00

24 lines
292 B
C++

#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