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

mce comments fix

This commit is contained in:
Mirek Kratochvil 2012-07-13 14:22:39 +02:00
parent a889c94459
commit 17f17eb6da

@ -153,12 +153,12 @@ int privkey::sign (const bvector&in, bvector&out, uint delta, uint attempts, prn
if (evaluate_error_locator_trace (loc, e2, fld) ) {
//create the decodable message
//recreate the decodable codeword
p.add (e);
p.add (e2);
hperm.permute (p, e2); //back to systematic
e2.resize (signature_size() ); //strip checks
e2.resize (signature_size() ); //strip to message
Sinv.mult_vecT_left (e2, out); //signature
return 0;
}