diff options
author | 1999-09-28 04:45:35 +0000 | |
---|---|---|
committer | 1999-09-28 04:45:35 +0000 | |
commit | 76c6bcb9f8b94f512e5487f2508674a43b627567 (patch) | |
tree | 29c81cc53ac6da095592c67422c8d603090ab58b /usr.bin/ssh/ssh-agent | |
parent | disabled optimizations for 88k (diff) | |
download | wireguard-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/Makefile | 12 |
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> |