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

19 lines
299 B
C++

#include"Cryption.h"
Cryption::Cryption()
{ }
Cryption::~Cryption()
{ }
Cryption::Cryption(const std::string& message)
{ this->message = message; }
void Cryption::setMessage(const std::string& message)
{ this->message = message; }
std::string Cryption::getMessage() const
{ return message; }