mce_qcmdpc: improve decoding logic a bit
This commit is contained in:
parent
c1800500cf
commit
035fef4882
|
@ -251,13 +251,13 @@ int privkey::decrypt (const bvector & in_orig, bvector & out, bvector & errors)
|
||||||
}
|
}
|
||||||
|
|
||||||
uint round;
|
uint round;
|
||||||
for (round = 0; round < rounds; ++round) {
|
for (round = 0;; ++round) {
|
||||||
|
|
||||||
uint max_unsat = 0;
|
uint max_unsat = 0;
|
||||||
for (i = 0; i < cs; ++i)
|
for (i = 0; i < cs; ++i)
|
||||||
if (unsat[i] > max_unsat) max_unsat = unsat[i];
|
if (unsat[i] > max_unsat) max_unsat = unsat[i];
|
||||||
if (!max_unsat) break;
|
if (!max_unsat) break; //success
|
||||||
if (max_unsat > bs) return 3;
|
if (round >= rounds) return 3; //decoding failure
|
||||||
//TODO do something about possible timing attacks
|
//TODO do something about possible timing attacks
|
||||||
|
|
||||||
uint threshold = 0;
|
uint threshold = 0;
|
||||||
|
@ -299,7 +299,6 @@ int privkey::decrypt (const bvector & in_orig, bvector & out, bvector & errors)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (round == rounds) return 4; //we simply failed, haha.
|
|
||||||
|
|
||||||
errors = in_orig;
|
errors = in_orig;
|
||||||
errors.add (in); //get the difference
|
errors.add (in); //get the difference
|
||||||
|
|
Loading…
Reference in a new issue