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/KeyRetrieval.h
T

28 lines
512 B
C++

#ifndef KEYRETRIEVAL_H
#define KEYRETRIEVAL_H
#include<vector>
#include<string>
#include<list>
class KeyRetrieval
{
public:
KeyRetrieval();
~KeyRetrieval() = default;
void retrieveKey();
void addToList();
void addRange(int, const int);
std::vector<std::string> keyStructure();
std::vector<int> codeCharacterStructure();
private:
std::string fileName{"default_keys.txt"};
std::vector<std::string> keys;
std::vector<char> characters;
std::vector<int> codeCharacter;
const int keySize{5};
};
#endif