m2.cryptaffinity/src/lib/freq_analyser.hh

20 lines
343 B
C++
Raw Normal View History

#ifndef _LIBCRYPTAFINITY_FREQANALYSER_HH
#define _LIBCRYPTAFINITY_FREQANALYSER_HH
#include "cryptafinity_global.hh"
#include "cryptafinity_iface.hh"
#include "text.hh" // body
namespace LibCryptAfinity {
class FreqAnalyser {
private:
public:
std::list<TextCounter> getPriorities(Text t, int keylen, int column);
};
}
#endif