summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2001-06-28 23:00:43 +0000
committerEric Andersen <andersen@codepoet.org>2001-06-28 23:00:43 +0000
commitbe78085df51bd0c9e8c3a7c0a4f13fe1f074130f (patch)
tree4b425caab48ce1ae8d171ce24a043621ae62ca79 /include
parent1900d48810d3cae5bd00e8b43b33f8a5232a84f2 (diff)
I missed an item when reentrantifying des.c, reuse a smaller
field for md5.c -Erik
Diffstat (limited to 'include')
-rw-r--r--include/crypt.h5
1 files changed, 4 insertions, 1 deletions
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,