diff options
author | Markus Friedl <markus@cvs.openbsd.org> | 2013-12-06 13:39:50 +0000 |
---|---|---|
committer | Markus Friedl <markus@cvs.openbsd.org> | 2013-12-06 13:39:50 +0000 |
commit | a290ddcba332424443fa2507428cf4bdfd415bac (patch) | |
tree | 77d1dc09898f6b40a269e48d8520cffd5bb31dc0 /usr.bin/ssh/lib/Makefile | |
parent | 4b5b44f5080b9b0bd2e297236bde454a7b1d32aa (diff) |
support ed25519 keys (hostkeys and user identities) using the public domain
ed25519 reference code from SUPERCOP, see http://ed25519.cr.yp.to/software.html
feedback, help & ok djm@
Diffstat (limited to 'usr.bin/ssh/lib/Makefile')
-rw-r--r-- | usr.bin/ssh/lib/Makefile | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/usr.bin/ssh/lib/Makefile b/usr.bin/ssh/lib/Makefile index 1549bafb8cc..67ef309ebc2 100644 --- a/usr.bin/ssh/lib/Makefile +++ b/usr.bin/ssh/lib/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.69 2013/11/21 00:45:44 djm Exp $ +# $OpenBSD: Makefile,v 1.70 2013/12/06 13:39:49 markus Exp $ .PATH: ${.CURDIR}/.. .include "${.CURDIR}/../Makefile.inc" @@ -14,7 +14,10 @@ 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 + chacha.c poly1305.c cipher-chachapoly.c ssh-ed25519.c + +# ed25519, from supercop +SRCS+= sc25519.c ge25519.c fe25519.c ed25519.c verify.c hash.c blocks.c SRCS+= umac128.c CLEANFILES+= umac128.c |