m2.cryptaffinity/src/lib/freq_analyser.hh

20 lines
348 B
C++
Raw Normal View History

2012-08-14 23:26:24 +00:00
#ifndef _LIBCRYPTAFFINITY_FREQANALYSER_HH
#define _LIBCRYPTAFFINITY_FREQANALYSER_HH
2012-08-14 23:26:24 +00:00
#include "cryptaffinity_global.hh"
#include "cryptaffinity_iface.hh"
#include "text.hh" // body
2012-08-14 23:26:24 +00:00
namespace LibCryptAffinity {
class FreqAnalyser {
private:
public:
std::list<TextCounter> getPriorities(Text t, int keylen, int column);
};
}
#endif