From 93dce1ff92cef6c8a02ef98ff59f992a2b3b30af Mon Sep 17 00:00:00 2001 From: djm Date: Sun, 29 Dec 2013 04:35:50 +0000 Subject: [PATCH] don't refuse to load Ed25519 certificates --- usr.bin/ssh/authfile.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/usr.bin/ssh/authfile.c b/usr.bin/ssh/authfile.c index 77594c4e3b1..70bb814fec6 100644 --- a/usr.bin/ssh/authfile.c +++ b/usr.bin/ssh/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 * Copyright (c) 1995 Tatu Ylonen , Espoo, Finland @@ -1195,6 +1195,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__); -- 2.20.1