From 6e1ca6b80fb50ff5e1c065b7ac12635487b4a6d2 Mon Sep 17 00:00:00 2001 From: Werner Koch Date: Mon, 15 Jun 1998 15:41:04 +0000 Subject: extensions are now working and fixed a lot of bugs --- cipher/des.c | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'cipher/des.c') diff --git a/cipher/des.c b/cipher/des.c index 53afbc3ca..3864b2214 100644 --- a/cipher/des.c +++ b/cipher/des.c @@ -25,7 +25,13 @@ #include #include "util.h" #include "types.h" -#include "des.h" + +#define DES_BLOCKSIZE 8 +#define DES_ROUNDS 16 + +typedef struct { + int tripledes; +} DES_context; static const int IP[64] = { -- cgit v1.2.3