diff options
Diffstat (limited to 'lib/libcrypt/crypt.h')
| -rw-r--r-- | lib/libcrypt/crypt.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/libcrypt/crypt.h b/lib/libcrypt/crypt.h index 2488ac84e678..c6771605dc2f 100644 --- a/lib/libcrypt/crypt.h +++ b/lib/libcrypt/crypt.h @@ -1,3 +1,4 @@ +/* LINTLIBRARY */ /* * Copyright (c) 1999 * Mark Murray. All rights reserved. @@ -28,11 +29,12 @@ */ /* magic sizes */ +#define MD4_SIZE 16 #define MD5_SIZE 16 char *crypt_des(const char *pw, const char *salt); char *crypt_md5(const char *pw, const char *salt); +char *crypt_nthash(const char *pw, const char *salt); char *crypt_blowfish(const char *pw, const char *salt); extern void _crypt_to64(char *s, u_long v, int n); - |
