diff options
author | provos <> | 1998-07-21 22:23:20 +0000 |
---|---|---|
committer | provos <> | 1998-07-21 22:23:20 +0000 |
commit | dbd466e2fd7a3d79f407cccbbe8cd826429790d8 (patch) | |
tree | cf1adc8c4ef8c3203083f3998c8bcca89cd45af9 /src/lib/libc/crypt/Makefile.inc | |
parent | b811c9ad609b90ad8a28b3d5e9044db773f24841 (diff) | |
download | openbsd-dbd466e2fd7a3d79f407cccbbe8cd826429790d8.tar.gz openbsd-dbd466e2fd7a3d79f407cccbbe8cd826429790d8.tar.bz2 openbsd-dbd466e2fd7a3d79f407cccbbe8cd826429790d8.zip |
Add CAST encryption, implementation by Steve Reid <sreid@sea-to-sky.net>.
Man pages will come soon, I hope.
Diffstat (limited to 'src/lib/libc/crypt/Makefile.inc')
-rw-r--r-- | src/lib/libc/crypt/Makefile.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/libc/crypt/Makefile.inc b/src/lib/libc/crypt/Makefile.inc index 7866f46a8e..9d96d657db 100644 --- a/src/lib/libc/crypt/Makefile.inc +++ b/src/lib/libc/crypt/Makefile.inc | |||
@@ -1,8 +1,8 @@ | |||
1 | # $OpenBSD: Makefile.inc,v 1.9 1997/04/16 12:11:27 deraadt Exp $ | 1 | # $OpenBSD: Makefile.inc,v 1.10 1998/07/21 22:23:20 provos Exp $ |
2 | 2 | ||
3 | .PATH: ${.CURDIR}/arch/${MACHINE_ARCH}/crypt ${.CURDIR}/crypt | 3 | .PATH: ${.CURDIR}/arch/${MACHINE_ARCH}/crypt ${.CURDIR}/crypt |
4 | 4 | ||
5 | SRCS+= crypt.c morecrypt.c md5crypt.c arc4random.c blowfish.c | 5 | SRCS+= cast.c crypt.c morecrypt.c md5crypt.c arc4random.c blowfish.c |
6 | SRCS+= bcrypt.c | 6 | SRCS+= bcrypt.c |
7 | 7 | ||
8 | MAN+= crypt.3 blowfish.3 arc4random.3 | 8 | MAN+= crypt.3 blowfish.3 arc4random.3 |