Fixed reconciliation bug - Peikert-style reconciliation now achieves 100% accuracy (was 50% with broken XOR)

This commit is contained in:
2026-01-06 13:23:40 -07:00
parent 053b983f43
commit e893d6998f
3 changed files with 48 additions and 84 deletions

View File

@@ -12,6 +12,7 @@ macro_rules! trace {
pub(crate) use trace;
#[allow(dead_code)]
pub fn hex_preview(data: &[u8], len: usize) -> String {
let preview: Vec<String> = data
.iter()