m2.cryptaffinity/src/lib/codec.hh

23 lines
368 B
C++
Raw Normal View History

2012-08-14 23:26:24 +00:00
#ifndef _LIBCRYPAFFINITY_CODEC_HH
#define _LIBCRYPAFFINITY_CODEC_HH
#include "text.hh"
#include "key.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 Codec {
private:
public:
Codec();
virtual Text encode(Text plaintext, Key key);
virtual Text decode(Text plaintext, Key key);
};
}
#endif