16 lines
345 B
C++
16 lines
345 B
C++
|
|
#ifndef _decoding_h_
|
|
#define _decoding_h_
|
|
|
|
#include "codecrypt.h"
|
|
|
|
using namespace ccr;
|
|
bool syndrome_decode (bvector&syndrome,
|
|
gf2m&fld,
|
|
polynomial& gp,
|
|
std::vector<polynomial>& sqInv,
|
|
bvector&ev,
|
|
bool check_failure = true);
|
|
|
|
#endif
|