1
0
mirror of https://github.com/biergaizi/codecrypt synced 2024-06-30 02:43:06 +00:00
codecrypt/lib/polynomial.cpp

17 lines
175 B
C++
Raw Normal View History

2012-04-01 11:51:59 +00:00
#include "codecrypt.h"
using namespace ccr;
bool polynomial::is_irreducible()
{
2012-04-01 18:55:18 +00:00
return false;
2012-04-01 11:51:59 +00:00
}
void polynomial::generate_random_irreducible (uint size, prng&rng)
{
}