m2.cryptaffinity/src/lib/key_vigenere.hh

20 lines
311 B
C++
Raw Normal View History

#ifndef _CRYPTAFINIY_KEYVIGENERE_HH
#define _CRYPTAFINIY_KEYVIGENERE_HH
2012-08-14 23:26:24 +00:00
#include "cryptaffinity_global.hh"
#include "cryptaffinity_iface.hh"
#include "text.hh"
#include "key.hh"
2012-08-14 23:26:24 +00:00
namespace LibCryptAffinity {
class KeyVigenere : public Key, public Text {
private:
public:
KeyVigenere();
};
}
#endif