From 2cce29a0c764de0719384a777f8a86f08b1485e4 Mon Sep 17 00:00:00 2001 From: Johan Danielsson Date: Sat, 12 Apr 1997 12:26:43 +0000 Subject: [PATCH] Change tests to reflect new des_quad_cksum. git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@1559 ec53bebd-3082-4978-b11e-865c3cabbd6b --- lib/des/destest.c | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/lib/des/destest.c b/lib/des/destest.c index 7d9947ff9..b5eb64160 100644 --- a/lib/des/destest.c +++ b/lib/des/destest.c @@ -614,28 +614,28 @@ char *argv[]; printf("quad_cksum error, ret %08lx should be 70d7a63a\n",cs); err=1; } - if (lqret[0] != 0x327eba8dL) + if (lqret[0] != 0x8dba7e32L) { printf("quad_cksum error, out[0] %08lx is not %08lx\n", - lqret[0],0x327eba8dL); + lqret[0],0x8dba7e32L); err=1; } - if (lqret[1] != 0x201a49ccL) + if (lqret[1] != 0xcc491a20L) { printf("quad_cksum error, out[1] %08lx is not %08lx\n", - lqret[1],0x201a49ccL); + lqret[1],0xcc491a20L); err=1; } - if (lqret[2] != 0x70d7a63aL) + if (lqret[2] != 0x3aa6d770L) { printf("quad_cksum error, out[2] %08lx is not %08lx\n", - lqret[2],0x70d7a63aL); + lqret[2],0x3aa6d770L); err=1; } - if (lqret[3] != 0x501c2c26L) + if (lqret[3] != 0x262c1c50L) { printf("quad_cksum error, out[3] %08lx is not %08lx\n", - lqret[3],0x501c2c26L); + lqret[3],0x262c1c50L); err=1; }