summaryrefslogtreecommitdiff
path: root/authfile.c
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2013-12-29 17:50:15 +1100
committerDamien Miller <djm@mindrot.org>2013-12-29 17:50:15 +1100
commitb9a95490daa04cc307589897f95bfaff324ad2c9 (patch)
treeb2acf9d6ded71142558d7af4e1d74c07fa31d0fa /authfile.c
parentf72cdde6e6fabc51d2a62f4e75b8b926d9d7ee89 (diff)
downloadopenssh-git-b9a95490daa04cc307589897f95bfaff324ad2c9.tar.gz
- djm@cvs.openbsd.org 2013/12/29 04:35:50
[authfile.c] don't refuse to load Ed25519 certificates
Diffstat (limited to 'authfile.c')
-rw-r--r--authfile.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/authfile.c b/authfile.c
index 3bbc7cbb..7eccbb2c 100644
--- a/authfile.c
+++ b/authfile.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: authfile.c,v 1.100 2013/12/06 13:39:49 markus Exp $ */
+/* $OpenBSD: authfile.c,v 1.101 2013/12/29 04:35:50 djm Exp $ */
/*
* Author: Tatu Ylonen <ylo@cs.hut.fi>
* Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
@@ -1213,6 +1213,7 @@ key_load_private_cert(int type, const char *filename, const char *passphrase,
case KEY_RSA:
case KEY_DSA:
case KEY_ECDSA:
+ case KEY_ED25519:
break;
default:
error("%s: unsupported key type", __func__);