Displaying 3 results from an estimated 3 matches for "ssh2_agentc_request_identities".
2016 Jan 01
3
removing keys from ssh-agent without having key file
ssh-agent does not allow you to remove individual keys without having the
key file that was added. To remove these keys the user must remove all keys
with ssh-add -D.
Would a patch to make ssh-add skip the existence check for the file be
considered?
The specific use case is that a USB drive is mounted with the key, the key
is added to the agent then the USB drive is unmounted.
2012 Mar 11
2
[patch] Threading support in ssh-agent
...>idlist, id, next);
- free_identity(id);
tab->nentries--;
+
+ tpool_barrier(&tpool);
+
+ free_identity(id);
}
}
}
@@ -861,7 +1144,7 @@
break;
/* ssh2 */
case SSH2_AGENTC_SIGN_REQUEST:
- process_sign_request2(e);
+ schedule_sign_request2(e);
break;
case SSH2_AGENTC_REQUEST_IDENTITIES:
process_request_identities(e, 2);
@@ -943,6 +1226,10 @@
break;
case AUTH_UNUSED:
break;
+#ifdef HAVE_LIBPTHREAD
+ case AUTH_INUSE:
+ break;
+#endif
default:
fatal("Unknown socket type %d", sockets[i].type);
break;
@@ -981,6 +1268,13 @@
if (parent_alive_inter...
2007 Sep 29
64
[Bug 1371] New: Add PKCS#11 (Smartcards) support into OpenSSH
http://bugzilla.mindrot.org/show_bug.cgi?id=1371
Summary: Add PKCS#11 (Smartcards) support into OpenSSH
Product: Portable OpenSSH
Version: 4.7p1
Platform: All
URL: http://alon.barlev.googlepages.com/openssh-pkcs11
OS/Version: All
Status: NEW
Severity: enhancement
Priority: P2
Component: