From ed1b0d9cc8100c0151365b92428d8fa2522ee085 Mon Sep 17 00:00:00 2001 Message-Id: From: Mark Wooding Date: Sun, 28 May 2000 00:39:52 +0000 Subject: [PATCH] Bad bug makes all previous testing worthless. Organization: Straylight/Edgeware From: Mark Wooding --- diffan.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/diffan.c b/diffan.c index eef248b..9ffde58 100644 --- a/diffan.c +++ b/diffan.c @@ -1,6 +1,6 @@ /* -*-c-*- * - * $Id: diffan.c,v 1.1 2000/05/21 11:28:30 mdw Exp $ + * $Id: diffan.c,v 1.2 2000/05/28 00:39:52 mdw Exp $ * * Differential analysis of matrix multiplication * @@ -49,6 +49,9 @@ /*----- Revision history --------------------------------------------------* * * $Log: diffan.c,v $ + * Revision 1.2 2000/05/28 00:39:52 mdw + * Bad bug makes all previous testing worthless. + * * Revision 1.1 2000/05/21 11:28:30 mdw * Initial check-in. * @@ -104,7 +107,7 @@ static void probe(uint24 *delta) for (j = 0; j < 4; j++) { x[j] = U24(fibrand_step(&r)); - y[j] = x[j] & delta[j]; + y[j] = x[j] ^ delta[j]; } matmul(xi, m, x, 4, 4, 1); -- [mdw]