diff options
author | Niels Provos <provos@cvs.openbsd.org> | 1999-09-28 04:45:39 +0000 |
---|---|---|
committer | Niels Provos <provos@cvs.openbsd.org> | 1999-09-28 04:45:39 +0000 |
commit | 2ab8fdfdfd2725f7f58cb91304befeb8d360ddf6 (patch) | |
tree | 78b8943ea351c6ae64bb3911ff8bb65d29ff6ad4 /usr.bin/ssh/sshd/Makefile | |
parent | 9f4a6fa812c9ca6ac0b6df69d6a8dbf9e53a62c1 (diff) |
convert all uses of gmp to SSL bignum
convert all used of rsa to SSL rsa functions
remove all use of randomstate to OpenBSD arc4random() and arc4_stir()
all this done at a long long night in Canada.
Diffstat (limited to 'usr.bin/ssh/sshd/Makefile')
-rw-r--r-- | usr.bin/ssh/sshd/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/usr.bin/ssh/sshd/Makefile b/usr.bin/ssh/sshd/Makefile index 4ca6870c930..7c2655475d3 100644 --- a/usr.bin/ssh/sshd/Makefile +++ b/usr.bin/ssh/sshd/Makefile @@ -4,14 +4,14 @@ PROG= sshd BINOWN= root BINMODE=555 BINDIR= /usr/sbin -LDADD= -lkrb -lcrypto -ldes -lgmp -lutil -lz +LDADD= -lkrb -lcrypto -ldes -lutil -lz MAN= sshd.8 SRCS= sshd.c auth-rhosts.c auth-passwd.c auth-rsa.c auth-rh-rsa.c pty.c \ log-server.c login.c hostfile.c canohost.c servconf.c tildexpand.c \ - uidswap.c serverloop.c rsa.c randoms.c \ + uidswap.c serverloop.c rsa.c \ ssh_md5.c buffer.c packet.c xmalloc.c ttymodes.c channels.c bufaux.c \ - authfd.c authfile.c crc32.c rsaglue.c match.c mpaux.c minfd.c cipher.c \ + authfd.c authfile.c crc32.c match.c mpaux.c minfd.c cipher.c \ compress.c gen_minfd: gen_minfd.c @@ -20,4 +20,4 @@ minfd.o: minfd.h minfd.h: gen_minfd ./gen_minfd $(USER_SHELLS) > minfd.h -.include<bsd.prog.mk> +.include <bsd.prog.mk> |