diff options
author | Markus Friedl <markus@cvs.openbsd.org> | 2014-01-27 18:58:15 +0000 |
---|---|---|
committer | Markus Friedl <markus@cvs.openbsd.org> | 2014-01-27 18:58:15 +0000 |
commit | 2d6e8b0af2e1cb14e383dbaa679fdde97933d2f5 (patch) | |
tree | d737f62494c6c83b777dd3e816eac2739a30af74 /usr.bin/ssh/lib | |
parent | 240232e0fc7c9d12f2ce12062019e70f67653302 (diff) |
replace openssl HMAC with an implementation based on our ssh_digest_*
ok and feedback djm@
Diffstat (limited to 'usr.bin/ssh/lib')
-rw-r--r-- | usr.bin/ssh/lib/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/lib/Makefile b/usr.bin/ssh/lib/Makefile index 362606ebcfb..217fd23663b 100644 --- a/usr.bin/ssh/lib/Makefile +++ b/usr.bin/ssh/lib/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.71 2014/01/09 23:20:01 djm Exp $ +# $OpenBSD: Makefile,v 1.72 2014/01/27 18:58:14 markus Exp $ .PATH: ${.CURDIR}/.. .include "${.CURDIR}/../Makefile.inc" @@ -14,7 +14,7 @@ SRCS= authfd.c authfile.c bufaux.c bufec.c bufbn.c buffer.c canohost.c \ kexdhc.c kexgexc.c kexecdhc.c msg.c progressmeter.c dns.c \ monitor_fdpass.c umac.c addrmatch.c schnorr.c jpake.c ssh-pkcs11.c \ krl.c smult_curve25519_ref.c kexc25519.c kexc25519c.c \ - chacha.c poly1305.c cipher-chachapoly.c ssh-ed25519.c digest.c + chacha.c poly1305.c cipher-chachapoly.c ssh-ed25519.c digest.c hmac.c # ed25519, from supercop SRCS+= sc25519.c ge25519.c fe25519.c ed25519.c verify.c hash.c blocks.c |