]> git.ipfire.org Git - thirdparty/openssh-portable.git/commitdiff
- djm@cvs.openbsd.org 2013/12/29 04:29:25
authorDamien Miller <djm@mindrot.org>
Sun, 29 Dec 2013 06:49:55 +0000 (17:49 +1100)
committerDamien Miller <djm@mindrot.org>
Sun, 29 Dec 2013 06:49:55 +0000 (17:49 +1100)
     [authfd.c]
     allow deletion of ed25519 keys from the agent

ChangeLog
authfd.c

index 40befaa78ce31b5f795f2e18f6115ae7c9b57c9a..3e85c79f183bd0cb522e72f7351b46a807783c12 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -57,6 +57,9 @@
      to make sure we don't omit any key types as valid CA keys again,
      factor the valid key type check into a key_type_is_valid_ca()
      function
+   - djm@cvs.openbsd.org 2013/12/29 04:29:25
+     [authfd.c]
+     allow deletion of ed25519 keys from the agent
 
 20131221
  - (dtucker) [regress/keytype.sh] Actually test ecdsa key types.
index 0971cee32a918243e75dfdafc2507885214b1e2f..f9636903ad404796b43ac586706aeefe98f2c180 100644 (file)
--- a/authfd.c
+++ b/authfd.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: authfd.c,v 1.90 2013/12/06 13:39:49 markus Exp $ */
+/* $OpenBSD: authfd.c,v 1.91 2013/12/29 04:29:25 djm Exp $ */
 /*
  * Author: Tatu Ylonen <ylo@cs.hut.fi>
  * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
@@ -557,9 +557,7 @@ ssh_remove_identity(AuthenticationConnection *auth, Key *key)
                buffer_put_int(&msg, BN_num_bits(key->rsa->n));
                buffer_put_bignum(&msg, key->rsa->e);
                buffer_put_bignum(&msg, key->rsa->n);
-       } else if (key_type_plain(key->type) == KEY_DSA ||
-           key_type_plain(key->type) == KEY_RSA ||
-           key_type_plain(key->type) == KEY_ECDSA) {
+       } else if (key->type != KEY_UNSPEC) {
                key_to_blob(key, &blob, &blen);
                buffer_put_char(&msg, SSH2_AGENTC_REMOVE_IDENTITY);
                buffer_put_string(&msg, blob, blen);