diff options
author | 2017-12-14 21:07:39 +0000 | |
---|---|---|
committer | 2017-12-14 21:07:39 +0000 | |
commit | c0c5a1b786c3ddeb1d6076833b0cd54419e9e8ac (patch) | |
tree | fcf53bda6b0416b90a07cff27878fc2a4bd01ccd /usr.bin/ssh/ssh-keysign | |
parent | Don't bother using DETACH_FORCE for the softraid luns at reboot (diff) | |
download | wireguard-openbsd-c0c5a1b786c3ddeb1d6076833b0cd54419e9e8ac.tar.xz wireguard-openbsd-c0c5a1b786c3ddeb1d6076833b0cd54419e9e8ac.zip |
Replace ED25519's private SHA-512 implementation with a call to the
regular digest code. This speeds up compilation considerably.
ok markus@
Diffstat (limited to 'usr.bin/ssh/ssh-keysign')
-rw-r--r-- | usr.bin/ssh/ssh-keysign/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/ssh-keysign/Makefile b/usr.bin/ssh/ssh-keysign/Makefile index 749af238330..9a1e49700b0 100644 --- a/usr.bin/ssh/ssh-keysign/Makefile +++ b/usr.bin/ssh/ssh-keysign/Makefile @@ -1,10 +1,10 @@ -# $OpenBSD: Makefile,v 1.11 2017/12/12 15:06:12 naddy Exp $ +# $OpenBSD: Makefile,v 1.12 2017/12/14 21:07:39 naddy Exp $ .PATH: ${.CURDIR}/.. SRCS= ssh-keysign.c readconf.c -SRCS+= addrmatch.c atomicio.c authfile.c bitmap.c blocks.c canohost.c \ +SRCS+= addrmatch.c atomicio.c authfile.c bitmap.c canohost.c \ chacha.c cipher-chachapoly.c cipher.c cleanup.c digest-openssl.c \ dispatch.c ed25519.c fatal.c fe25519.c ge25519.c hash.c hmac.c kex.c \ krl.c log.c mac.c match.c misc.c msg.c packet.c poly1305.c sc25519.c \ |