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/Cryption.h
T
2017-04-28 16:01:22 -05:00

23 lines
302 B
C++

#ifndef CRYPTION_H
#define CRYPTION_H
#include<fstream>
#include<string>
class Cryption
{
public:
Cryption();
~Cryption();
Cryption(const std::string&);
std::string getMessage() const;
protected:
void setMessage(const std::string&);
std::string message{};
std::fstream ioEvent{};
};
#endif