www.pudn.com > CipherSystem.rar > VigenereCipherSystem.h
#ifndef VIGENERE_CIPHER_SYSGEM_H
#define VIGENERE_CIPHER_SYSGEM_H
#include "MyCipherSystem.h"
class VigenereEncryptSystem : public EncryptSystem
{
public:
bool GetKey(const std::string& str);
void Encrypt();
void Decrypt();
private:
std::string keyWord;
};
#endif//VIGENERE_CIPHER_SYSGEM_H