mirror of
https://github.com/PowerShell/openssh-portable.git
synced 2025-07-28 00:04:30 +02:00
- djm@cvs.openbsd.org 2013/12/29 04:35:50
[authfile.c] don't refuse to load Ed25519 certificates
This commit is contained in:
parent
f72cdde6e6
commit
b9a95490da
@ -60,6 +60,9 @@
|
|||||||
- djm@cvs.openbsd.org 2013/12/29 04:29:25
|
- djm@cvs.openbsd.org 2013/12/29 04:29:25
|
||||||
[authfd.c]
|
[authfd.c]
|
||||||
allow deletion of ed25519 keys from the agent
|
allow deletion of ed25519 keys from the agent
|
||||||
|
- djm@cvs.openbsd.org 2013/12/29 04:35:50
|
||||||
|
[authfile.c]
|
||||||
|
don't refuse to load Ed25519 certificates
|
||||||
|
|
||||||
20131221
|
20131221
|
||||||
- (dtucker) [regress/keytype.sh] Actually test ecdsa key types.
|
- (dtucker) [regress/keytype.sh] Actually test ecdsa key types.
|
||||||
|
@ -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>
|
* Author: Tatu Ylonen <ylo@cs.hut.fi>
|
||||||
* Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
|
* 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_RSA:
|
||||||
case KEY_DSA:
|
case KEY_DSA:
|
||||||
case KEY_ECDSA:
|
case KEY_ECDSA:
|
||||||
|
case KEY_ED25519:
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
error("%s: unsupported key type", __func__);
|
error("%s: unsupported key type", __func__);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user