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

27 lines
417 B
C++

#ifndef DECRYPTION_H
#define DECRYPTION_H
#include <fstream>
#include <string>
#include "Cryption.h"
class Decryption : public Cryption
{
public:
Decryption();
Decryption(const std::string&);
void setDecryptedMessage(const std::string&);
void decryptMessage();
std::string getDecryptedMessage() const;
private:
std::string cstringToString(char[], const int&);
std::string decryptedMessage{};
};
#endif