codecrypt/lib/polynomial.cpp
2012-04-01 20:55:18 +02:00

17 lines
175 B
C++

#include "codecrypt.h"
using namespace ccr;
bool polynomial::is_irreducible()
{
return false;
}
void polynomial::generate_random_irreducible (uint size, prng&rng)
{
}