summaryrefslogtreecommitdiff
path: root/include/crypt.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/crypt.h')
-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,