aboutsummaryrefslogtreecommitdiff
path: root/lib/libcrypt/Makefile
diff options
context:
space:
mode:
authorMark Murray <markm@FreeBSD.org>2001-03-11 16:05:43 +0000
committerMark Murray <markm@FreeBSD.org>2001-03-11 16:05:43 +0000
commit5c1296168babf97c51ff030872cddb7f9857474f (patch)
tree35e67663ccfe25c4b15900e46b883f7fe18b5fb6 /lib/libcrypt/Makefile
parenta7436e684a66b2d795d41b439531a326b33cb779 (diff)
downloadsrc-5c1296168babf97c51ff030872cddb7f9857474f.tar.gz
src-5c1296168babf97c51ff030872cddb7f9857474f.zip
Add OpenBSD-style blowfish password hashing. This makes one less
gratuitous difference between us and our sister project. This was given to me _ages_ ago. May apologies to Paul for the length of time its taken me to commit. Obtained from: Niels Provos <provos@physnet.uni-hamburg.de>/OpenBSD Submitted by: Paul Herman <pherman@frenchfries.net>
Notes
Notes: svn path=/head/; revision=74106
Diffstat (limited to 'lib/libcrypt/Makefile')
-rw-r--r--lib/libcrypt/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libcrypt/Makefile b/lib/libcrypt/Makefile
index 55e76d345516..a91c5eb442be 100644
--- a/lib/libcrypt/Makefile
+++ b/lib/libcrypt/Makefile
@@ -15,8 +15,8 @@ CFLAGS+= -DLIBC_SCCS -Wall
.if exists(${.CURDIR}/../../secure/lib/libcrypt/crypt-des.c) && \
!defined(NOSECURE) && !defined(NOCRYPT)
.PATH: ${.CURDIR}/../../secure/lib/libcrypt
-SRCS+= crypt-des.c
-CFLAGS+= -I${.CURDIR} -DHAS_DES
+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