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-25 13:05:01 -05:00

23 lines
326 B
C++

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