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-06-20 18:33:38 -05:00

13 lines
246 B
C++

#include"Cryption.h"
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; }