m2.cryptaffinity/src/lib/codec_vigenere.hh

22 lines
406 B
C++
Raw Normal View History

2012-08-14 23:26:24 +00:00
#ifndef _LIBCRYPAFFINITY_CODEC_VIGENERE_HH
#define _LIBCRYPAFFINITY_CODEC_VIGENERE_HH
#include "codec.hh"
#include "key_vigenere.hh"
2012-08-14 23:26:24 +00:00
#include "cryptaffinity_global.hh"
#include "cryptaffinity_iface.hh"
2012-08-14 23:26:24 +00:00
namespace LibCryptAffinity {
class CodecVigenere : public Codec {
private:
public:
CodecVigenere();
Text encode(Text t, KeyVigenere k);
Text decode(Text t, KeyVigenere k);
};
}
#endif