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/GenerateKeys.h
T
2017-03-24 13:00:56 -05:00

25 lines
394 B
C++

#ifndef GENERATEKEYS_H
#define GENERATEKEYS_H
#include <map>
class GenerateKeys
{
public:
typedef unsigned short unsignedShort;
GenerateKeys();
void populateDecryptedValues();
void populateEncryptedValues();
friend class Encryption;
friend class Decryption;
private:
std::map<unsignedShort, char> decryptedCharacters;
std::map<char, unsignedShort> encryptedCharacters;
};
#endif