1
0
mirror of https://github.com/biergaizi/codecrypt synced 2024-07-08 19:31:24 +00:00
codecrypt/lib/decoding.h
2012-06-03 23:28:18 +02:00

19 lines
479 B
C++

#ifndef _decoding_h_
#define _decoding_h_
#include "codecrypt.h"
using namespace ccr;
void compute_error_locator (bvector&syndrome,
gf2m&fld,
polynomial&goppa,
std::vector<polynomial>& sqInv,
polynomial&loc);
bool evaluate_error_locator_dumb (polynomial&el, bvector&ev, gf2m&fld);
bool evaluate_error_locator_trace (polynomial&el, bvector&ev, gf2m&fld);
#endif