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

23 lines
276 B
C++

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