cs251/Project3/brute.hpp

19 lines
254 B
C++
Raw Permalink Normal View History

2018-10-15 17:24:29 -04:00
#ifndef _BRUTE_HPP_
#define _BRUTE_HPP_
#include <fstream>
#include <iostream>
#include <string>
#include "key.hpp"
class Brute {
private:
std::vector<Key> T;
public:
Brute(const std::string&);
void decrypt(const std::string&);
};
#endif