diff options
author | Damien Miller <djm@mindrot.org> | 2014-02-04 01:02:42 +0100 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2014-02-04 01:02:42 +0100 |
commit | 4e8d937af79ce4e253f77ec93489d098b25becc3 (patch) | |
tree | 83b0293313eea8dfebcc7f906c5058f530238e8b /Makefile.in | |
parent | - (tim) [Makefile.in] build regress/setuid-allow. (diff) | |
download | openssh-4e8d937af79ce4e253f77ec93489d098b25becc3.tar.xz openssh-4e8d937af79ce4e253f77ec93489d098b25becc3.zip |
- markus@cvs.openbsd.org 2014/01/27 18:58:14
[Makefile.in digest.c digest.h hostfile.c kex.h mac.c hmac.c hmac.h]
replace openssl HMAC with an implementation based on our ssh_digest_*
ok and feedback djm@
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.in b/Makefile.in index 41f704bb4..99ac27ebb 100644 --- a/Makefile.in +++ b/Makefile.in @@ -1,4 +1,4 @@ -# $Id: Makefile.in,v 1.353 2014/01/31 22:25:19 tim Exp $ +# $Id: Makefile.in,v 1.354 2014/02/04 00:02:43 djm Exp $ # uncomment if you run a non bourne compatable shell. Ie. csh #SHELL = @SH@ @@ -75,7 +75,7 @@ LIBSSH_OBJS=authfd.o authfile.o bufaux.o bufbn.o buffer.o \ msg.o progressmeter.o dns.o entropy.o gss-genr.o umac.o umac128.o \ jpake.o schnorr.o ssh-pkcs11.o krl.o smult_curve25519_ref.o \ kexc25519.o kexc25519c.o poly1305.o chacha.o cipher-chachapoly.o \ - ssh-ed25519.o digest.o \ + ssh-ed25519.o digest.o hmac.o \ sc25519.o ge25519.o fe25519.o ed25519.o verify.o hash.o blocks.o SSHOBJS= ssh.o readconf.o clientloop.o sshtty.o \ |