diff options
author | 2017-12-12 15:06:12 +0000 | |
---|---|---|
committer | 2017-12-12 15:06:12 +0000 | |
commit | a3ef2fce0b740075bab6873e3b2281ed6699e2b5 (patch) | |
tree | ca52c2eb531ec557b40918524f880fa5c05a4231 /usr.bin/ssh/ssh-keysign | |
parent | Don't dereference IEEE80211_CHAN_ANYC pointer in ieee80211_node_checkrssi(). (diff) | |
download | wireguard-openbsd-a3ef2fce0b740075bab6873e3b2281ed6699e2b5.tar.xz wireguard-openbsd-a3ef2fce0b740075bab6873e3b2281ed6699e2b5.zip |
Create a persistent umac128.c source file: #define the output size and
the name of the entry points for UMAC-128 before including umac.c.
Idea from FreeBSD.
ok dtucker@
Diffstat (limited to 'usr.bin/ssh/ssh-keysign')
-rw-r--r-- | usr.bin/ssh/ssh-keysign/Makefile | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/usr.bin/ssh/ssh-keysign/Makefile b/usr.bin/ssh/ssh-keysign/Makefile index 274674806f4..749af238330 100644 --- a/usr.bin/ssh/ssh-keysign/Makefile +++ b/usr.bin/ssh/ssh-keysign/Makefile @@ -1,18 +1,9 @@ -# $OpenBSD: Makefile,v 1.10 2017/12/10 19:37:57 deraadt Exp $ +# $OpenBSD: Makefile,v 1.11 2017/12/12 15:06:12 naddy Exp $ .PATH: ${.CURDIR}/.. SRCS= ssh-keysign.c readconf.c -umac128.c: umac.c - sed \ - -e "s/^#define UMAC_OUTPUT_LEN 8/#define UMAC_OUTPUT_LEN 16/" \ - -e s/umac_new/umac128_new/g \ - -e s/umac_update/umac128_update/g \ - -e s/umac_final/umac128_final/g \ - -e s/umac_delete/umac128_delete/g \ - < ${.CURDIR}/../umac.c > ${.TARGET} - SRCS+= addrmatch.c atomicio.c authfile.c bitmap.c blocks.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 \ |