diff options
author | markm <markm@FreeBSD.org> | 2003-06-02 19:29:27 +0000 |
---|---|---|
committer | markm <markm@FreeBSD.org> | 2003-06-02 19:29:27 +0000 |
commit | ec27a748079eea5188cc0b53a46b236429761fb1 (patch) | |
tree | 8e6b976dc658b3a9d034ea4211cf590ed8f6af57 /lib/libcrypt/Makefile | |
parent | c9e0f045e69296620fe503e1cdd62d75d4a1f218 (diff) | |
download | FreeBSD-src-ec27a748079eea5188cc0b53a46b236429761fb1.zip FreeBSD-src-ec27a748079eea5188cc0b53a46b236429761fb1.tar.gz |
Add a new hash type. This "NT-hash" is compatible with the password
hashing scheme used in Microsoft's NT machines. IT IS NOT SECURE!
DON'T USE IT! This is for the use of competent sysadmins only!
Submitted by: Michael Bretterklieber
Diffstat (limited to 'lib/libcrypt/Makefile')
-rw-r--r-- | lib/libcrypt/Makefile | 18 |
1 files changed, 11 insertions, 7 deletions
diff --git a/lib/libcrypt/Makefile b/lib/libcrypt/Makefile index eda43f6..603a957 100644 --- a/lib/libcrypt/Makefile +++ b/lib/libcrypt/Makefile @@ -6,25 +6,29 @@ SHLIB_MAJOR= 2 LIB= crypt .PATH: ${.CURDIR}/../libmd -SRCS= crypt.c crypt-md5.c md5c.c misc.c +SRCS= crypt.c misc.c \ + crypt-md5.c md5c.c \ + crypt-nthash.c md4c.c MAN= crypt.3 MLINKS= crypt.3 crypt_get_format.3 crypt.3 crypt_set_format.3 CFLAGS+= -I${.CURDIR}/../libmd -I${.CURDIR}/../libutil -CFLAGS+= -DLIBC_SCCS -Wall -# Pull in the crypt-des.c source, assuming it is present. -.if exists(${.CURDIR}/../../secure/lib/libcrypt/crypt-des.c) && \ - !defined(NOCRYPT) + +# Pull in the strong crypto, if it is present. +.if exists(${.CURDIR}/../../secure/lib/libcrypt) && !defined(NOCRYPT) .PATH: ${.CURDIR}/../../secure/lib/libcrypt SRCS+= crypt-des.c crypt-blowfish.c blowfish.c CFLAGS+= -I${.CURDIR} -DHAS_DES -DHAS_BLOWFISH .endif + # And the auth_getval() code and support. .PATH: ${.CURDIR}/../libutil SRCS+= auth.c property.c -.for sym in MD5Init MD5Final MD5Update MD5Pad auth_getval \ - property_find properties_read properties_free +.for sym in auth_getval property_find properties_read properties_free \ + MD4Init MD4Final MD4Update MD4Pad \ + MD5Init MD5Final MD5Update MD5Pad CFLAGS+= -D${sym}=__${sym} .endfor + PRECIOUSLIB= yes .include <bsd.lib.mk> |