mirror of
https://git.FreeBSD.org/src.git
synced 2025-01-01 12:19:28 +00:00
da5c7089a3
Secure Hashing Algorithm - 1 (SHA-1), along with the further refinement of what $x$salt$hash means. With this new crypt the following are all acceptable: $1$ $MD5$ $SHA1$ Note: $2$ is used by OpenBSD's Blowfish, which I considered adding as $BF$, but there is no actual need for it with SHA-1. However, somebody wishing to add OpenBSD password support could easilly add it in now. There is also a malloc_crypt() available in the library now, which behaves exactly the same as crypt(), but it uses a malloced buffer instead of a static buffer. However, this is not standard so will likely not be used much (at all). Also, for those interested I did a brief speed test Pentium 166/MMX, which shows the DES crypt to do approximately 2640 crypts a CPU second, MD5 to do about 62 crypts a CPU second and SHA1 to do about 18 crypts a CPU second. Reviewed by: Mark Murray
58 lines
1.4 KiB
Makefile
58 lines
1.4 KiB
Makefile
#
|
|
# $Id: Makefile,v 1.14 1998/09/02 15:09:15 bde Exp $
|
|
#
|
|
|
|
SHLIB_MAJOR= 3
|
|
.PATH: ${.CURDIR}/../../lib/libmd
|
|
SRCS= crypt.c crypt-md5.c md5c.c crypt-shs.c shs.c
|
|
MAN3= crypt.3 shs.3 descrypt.3
|
|
CFLAGS+= -I${.CURDIR}/../libmd -DLIBC_SCCS
|
|
DESCRYPT= ${.CURDIR}/../../secure/lib/libcrypt/crypt-des.c
|
|
|
|
## build exportable crypt or des crypt?
|
|
.if exists(${DESCRYPT}) && !defined(NOCRYPT) && !defined(NOSECURE)
|
|
.PATH: ${.CURDIR}/../../secure/lib/libcrypt
|
|
CIPHERTYPE= des
|
|
SRCS+= crypt-des.c
|
|
CFLAGS+= -I${.CURDIR} -DDES_CRYPT
|
|
.else
|
|
CIPHERTYPE= exp
|
|
.endif
|
|
|
|
LIB=${CIPHERTYPE}crypt
|
|
LCRYPTBASE= libcrypt
|
|
LSCRYPTBASE= lib${LIB}
|
|
|
|
.if ${OBJFORMAT} != elf
|
|
LCRYPTSO= ${LCRYPTBASE}.so.${SHLIB_MAJOR}.${SHLIB_MINOR}
|
|
LSCRYPTSO= ${LSCRYPTBASE}.so.${SHLIB_MAJOR}.${SHLIB_MINOR}
|
|
.else
|
|
SONAME= ${LCRYPTBASE}.so.${SHLIB_MAJOR}
|
|
LCRYPTSO= ${LCRYPTBASE}.so.${SHLIB_MAJOR}
|
|
LSCRYPTSO= ${LSCRYPTBASE}.so.${SHLIB_MAJOR}
|
|
.endif
|
|
|
|
afterinstall:
|
|
.if !defined(NOPIC)
|
|
@cd ${DESTDIR}${SHLIBDIR}; \
|
|
rm -f ${LCRYPTSO}; \
|
|
ln -s ${LSCRYPTSO} ${LCRYPTSO}; \
|
|
rm -f ${LCRYPTBASE}.so.2; \
|
|
ln -s ${LSCRYPTSO} ${LCRYPTBASE}.so.2
|
|
.endif
|
|
.if !defined(NOPIC) && ${OBJFORMAT} == elf
|
|
@cd ${DESTDIR}${SHLIBDIR}; \
|
|
rm -f ${LCRYPTBASE}.so; \
|
|
ln -s ${LSCRYPTBASE}.so libcrypt.so
|
|
.endif
|
|
@cd ${DESTDIR}${LIBDIR}; \
|
|
rm -f ${LCRYPTBASE}.a; \
|
|
ln -s ${LSCRYPTBASE}.a libcrypt.a
|
|
.if !defined(NOPROFILE)
|
|
@cd ${DESTDIR}${LIBDIR}; \
|
|
rm -f ${LCRYPTBASE}_p.a; \
|
|
ln -s ${LSCRYPTBASE}_p.a libcrypt_p.a
|
|
.endif
|
|
|
|
.include <bsd.lib.mk>
|