From be78085df51bd0c9e8c3a7c0a4f13fe1f074130f Mon Sep 17 00:00:00 2001 From: Eric Andersen Date: Thu, 28 Jun 2001 23:00:43 +0000 Subject: I missed an item when reentrantifying des.c, reuse a smaller field for md5.c -Erik --- include/crypt.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'include/crypt.h') diff --git a/include/crypt.h b/include/crypt.h index af9aaca7a..fd5d0f67f 100644 --- a/include/crypt.h +++ b/include/crypt.h @@ -44,14 +44,17 @@ extern void encrypt (char *__block, int __edflag); struct block { unsigned char b_data[64]; }; +struct ordering { + unsigned char o_data[64]; +}; struct crypt_data { /* Stuff used by the des based routines */ struct block key; + const struct ordering *EP; /* Stuff used by the md5 based routines */ char *p; const char *sp,*ep; - char KS[16][48]; }; extern char *crypt_r (const char *__key, const char *__salt, -- cgit v1.2.3