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

26 lines
379 B
C++

#ifndef ENCRYPTION_H
#define ENCRYPTION_H
#include<fstream>
#include<string>
#include"Cryption.h"
class Encryption : public Cryption
{
public:
Encryption();
~Encryption();
Encryption(const std::string&);
void setEncryptedMessage(const std::string&);
void encryptMessage();
std::string getEncryptedMessage() const;
private:
std::string encryptedMessage{};
};
#endif