summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog3
-rw-r--r--authfile.c3
2 files changed, 5 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 3e85c79f1..3721d3d65 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -60,6 +60,9 @@
60 - djm@cvs.openbsd.org 2013/12/29 04:29:25 60 - djm@cvs.openbsd.org 2013/12/29 04:29:25
61 [authfd.c] 61 [authfd.c]
62 allow deletion of ed25519 keys from the agent 62 allow deletion of ed25519 keys from the agent
63 - djm@cvs.openbsd.org 2013/12/29 04:35:50
64 [authfile.c]
65 don't refuse to load Ed25519 certificates
63 66
6420131221 6720131221
65 - (dtucker) [regress/keytype.sh] Actually test ecdsa key types. 68 - (dtucker) [regress/keytype.sh] Actually test ecdsa key types.
diff --git a/authfile.c b/authfile.c
index 3bbc7cbb8..7eccbb2c9 100644
--- a/authfile.c
+++ b/authfile.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: authfile.c,v 1.100 2013/12/06 13:39:49 markus Exp $ */ 1/* $OpenBSD: authfile.c,v 1.101 2013/12/29 04:35:50 djm Exp $ */
2/* 2/*
3 * Author: Tatu Ylonen <ylo@cs.hut.fi> 3 * Author: Tatu Ylonen <ylo@cs.hut.fi>
4 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland 4 * 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,
1213 case KEY_RSA: 1213 case KEY_RSA:
1214 case KEY_DSA: 1214 case KEY_DSA:
1215 case KEY_ECDSA: 1215 case KEY_ECDSA:
1216 case KEY_ED25519:
1216 break; 1217 break;
1217 default: 1218 default:
1218 error("%s: unsupported key type", __func__); 1219 error("%s: unsupported key type", __func__);