cleaned-up version bump
This commit is contained in:
parent
de4ee8aa39
commit
aaa8c9ae9d
|
@ -1,6 +1,11 @@
|
||||||
|
|
||||||
Codecrypt ChangeLog
|
Codecrypt ChangeLog
|
||||||
|
|
||||||
|
1.7.1
|
||||||
|
|
||||||
|
- rewrite QC-MDPC decoding for speed (still around O(wi^2))
|
||||||
|
- fix the padding broken on non-byte-aligned numbers
|
||||||
|
|
||||||
1.7
|
1.7
|
||||||
|
|
||||||
- add QC-MDPC McEliece variant
|
- add QC-MDPC McEliece variant
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
|
|
||||||
AC_PREREQ(2.6)
|
AC_PREREQ(2.6)
|
||||||
AC_INIT([codecrypt], [1.7])
|
AC_INIT([codecrypt], [1.7.1])
|
||||||
AC_CONFIG_AUX_DIR(.) # because of libtoolize
|
AC_CONFIG_AUX_DIR(.) # because of libtoolize
|
||||||
AC_CONFIG_MACRO_DIR([m4])
|
AC_CONFIG_MACRO_DIR([m4])
|
||||||
|
|
||||||
|
|
|
@ -258,7 +258,7 @@ int privkey::decrypt (const bvector & in_orig, bvector & out, bvector & errors)
|
||||||
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;
|
||||||
if (max_unsat > bs) err ("mce_qcmdpc: weird decryption error, expect failures");
|
if (max_unsat > bs) return 3;
|
||||||
//TODO do something about possible timing attacks
|
//TODO do something about possible timing attacks
|
||||||
|
|
||||||
uint threshold = 0;
|
uint threshold = 0;
|
||||||
|
@ -298,7 +298,7 @@ int privkey::decrypt (const bvector & in_orig, bvector & out, bvector & errors)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (round == rounds) return 3; //we simply failed, haha.
|
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