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

22 lines
244 B
C++

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