summaryrefslogtreecommitdiff
path: root/usr.bin/ssh/sshd
diff options
context:
space:
mode:
authorDamien Miller <djm@cvs.openbsd.org>2010-08-31 11:54:46 +0000
committerDamien Miller <djm@cvs.openbsd.org>2010-08-31 11:54:46 +0000
commitb7d7ad1eba8cc5d3a33da1372036c3cc489d724c (patch)
treea9dbf56090f8345253e8c8e944160a23f922cc30 /usr.bin/ssh/sshd
parent12ed26cb2111068191436c2c2d5ea96bfabc55c3 (diff)
Implement Elliptic Curve Cryptography modes for key exchange (ECDH) and
host/user keys (ECDSA) as specified by RFC5656. ECDH and ECDSA offer better performance than plain DH and DSA at the same equivalent symmetric key length, as well as much shorter keys. Only the mandatory sections of RFC5656 are implemented, specifically the three REQUIRED curves nistp256, nistp384 and nistp521 and only ECDH and ECDSA. Point compression (optional in RFC5656 is NOT implemented). Certificate host and user keys using the new ECDSA key types are supported. Note that this code has not been tested for interoperability and may be subject to change. feedback and ok markus@
Diffstat (limited to 'usr.bin/ssh/sshd')
-rw-r--r--usr.bin/ssh/sshd/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/ssh/sshd/Makefile b/usr.bin/ssh/sshd/Makefile
index 7ff05cf3e7d..6597bd0860d 100644
--- a/usr.bin/ssh/sshd/Makefile
+++ b/usr.bin/ssh/sshd/Makefile
@@ -1,4 +1,4 @@
-# $OpenBSD: Makefile,v 1.70 2009/10/24 11:18:23 andreas Exp $
+# $OpenBSD: Makefile,v 1.71 2010/08/31 11:54:45 djm Exp $
.PATH: ${.CURDIR}/..
@@ -12,10 +12,10 @@ SRCS= sshd.c auth-rhosts.c auth-passwd.c auth-rsa.c auth-rh-rsa.c \
sshpty.c sshlogin.c servconf.c serverloop.c \
auth.c auth1.c auth2.c auth-options.c session.c \
auth-chall.c auth2-chall.c groupaccess.c \
- auth-bsdauth.c auth2-hostbased.c auth2-kbdint.c \
+ auth-bsdauth.c auth2-hostbased.c auth2-kbdint.c auth2-jpake.c \
auth2-none.c auth2-passwd.c auth2-pubkey.c \
monitor_mm.c monitor.c monitor_wrap.c \
- kexdhs.c kexgexs.c sftp-server.c sftp-common.c auth2-jpake.c \
+ kexdhs.c kexgexs.c kexecdhs.c sftp-server.c sftp-common.c \
roaming_common.c roaming_serv.c
.include <bsd.own.mk> # for KERBEROS and AFS