cs251/Project3/symbol.hpp
2018-10-15 17:24:29 -04:00

20 lines
276 B
C++

#ifndef _SYMBOL_HPP_
#define _SYMBOL_HPP_
#include <fstream>
#include <iostream>
#include <string>
#include <vector>
#include "key.hpp"
class Symbol {
private:
std::vector<Key> T;
public:
Symbol(const std::string&);
void decrypt(const std::string&);
};
#endif