summaryrefslogtreecommitdiffstats
path: root/usr.bin/ssh/ssh-agent
diff options
context:
space:
mode:
authorprovos <provos@openbsd.org>1999-09-28 04:45:35 +0000
committerprovos <provos@openbsd.org>1999-09-28 04:45:35 +0000
commit76c6bcb9f8b94f512e5487f2508674a43b627567 (patch)
tree29c81cc53ac6da095592c67422c8d603090ab58b /usr.bin/ssh/ssh-agent
parentdisabled optimizations for 88k (diff)
downloadwireguard-openbsd-76c6bcb9f8b94f512e5487f2508674a43b627567.tar.xz
wireguard-openbsd-76c6bcb9f8b94f512e5487f2508674a43b627567.zip
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/ssh-agent')
-rw-r--r--usr.bin/ssh/ssh-agent/Makefile12
1 files changed, 6 insertions, 6 deletions
diff --git a/usr.bin/ssh/ssh-agent/Makefile b/usr.bin/ssh/ssh-agent/Makefile
index 0abaa966429..8639b2ecf37 100644
--- a/usr.bin/ssh/ssh-agent/Makefile
+++ b/usr.bin/ssh/ssh-agent/Makefile
@@ -1,14 +1,14 @@
.PATH: ${.CURDIR}/..
-PROG= ssh-keygen
+PROG= ssh-agent
BINOWN= root
BINMODE=555
BINDIR= /usr/bin
-LDADD= -lkrb -lcrypto -ldes -lgmp -lutil -lz
-MAN= ssh-keygen.1
+LDADD= -lkrb -lcrypto -ldes -lutil -lz
+MAN= ssh-agent.1
-SRCS= ssh-agent.c log-client.c rsa.c randoms.c ssh_md5.c buffer.c \
- xmalloc.c bufaux.c authfd.c authfile.c rsaglue.c \
+SRCS= ssh-agent.c log-client.c rsa.c ssh_md5.c buffer.c \
+ xmalloc.c bufaux.c authfd.c authfile.c \
mpaux.c crc32.c match.c minfd.c cipher.c compress.c
gen_minfd: gen_minfd.c
@@ -16,4 +16,4 @@ minfd.o: minfd.h
minfd.h: gen_minfd
./gen_minfd $(USER_SHELLS) > minfd.h
-.include<bsd.prog.mk>
+.include <bsd.prog.mk>