diff options
| author | Mark Murray <markm@FreeBSD.org> | 2003-06-02 19:29:27 +0000 |
|---|---|---|
| committer | Mark Murray <markm@FreeBSD.org> | 2003-06-02 19:29:27 +0000 |
| commit | bf513f6958487aaec98db331959674dd4db398d5 (patch) | |
| tree | 8e6b976dc658b3a9d034ea4211cf590ed8f6af57 /lib/libcrypt/crypt.h | |
| parent | c8fa8e25d77016f36e63790f2ceccb90613ccb2e (diff) | |
Notes
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); - |
