search for: ssh2_agentc_sign_request

Displaying 7 results from an estimated 7 matches for "ssh2_agentc_sign_request".

2008 Aug 05
5
[Bug 1499] New: Add "ForwardAgent ask" to ssh_config
https://bugzilla.mindrot.org/show_bug.cgi?id=1499 Summary: Add "ForwardAgent ask" to ssh_config Classification: Unclassified Product: Portable OpenSSH Version: 4.7p1 Platform: All OS/Version: All Status: NEW Severity: enhancement Priority: P2 Component: ssh AssignedTo: unassigned-bugs
2000 Sep 18
1
ssh-agent and ssh2 servers...
I'm not on the mailing list, so I'd appreciate it if you could cc: me, though I will keep an eye on the archives. I am running openssh 2.2.0p1 on Debian GNU/Linux. I was pleased to see that 2.2.0p1 had support for DSA keys in the agent, and I have successfully used the v2 protocol to another openssh server with the agent providing authentication. I am also able to successfully connect
2000 Sep 16
15
Snapshot
...the windows client from ssh.com - markus at cvs.openbsd.org 2000/08/31 15:56:03 [README.openssh2] sync - markus at cvs.openbsd.org 2000/08/31 16:05:42 [session.c] Wall - markus at cvs.openbsd.org 2000/08/31 16:09:34 [authfd.c ssh-agent.c] add a flag to SSH2_AGENTC_SIGN_REQUEST for future extensions - deraadt at cvs.openbsd.org 2000/09/01 09:25:13 [scp.1 scp.c] cleanup and fix -S support; stevesk at sweden.hp.com - markus at cvs.openbsd.org 2000/09/01 16:29:32 [sftp-server.c] portability fixes - markus at cvs.openbsd.org 2000/09/01 16:32:41...
2012 Mar 11
2
[patch] Threading support in ssh-agent
...nxt = TAILQ_NEXT(id, next); if (!strcmp(provider, id->provider)) { TAILQ_REMOVE(&tab->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(&qu...
2015 Mar 31
7
Wanted: smartcard with ECDSA support
Hi list, I have no idea if Damien Miller had the time to work on that. I have an initial patch to authenticate using PKCS#11 and ECDSA keys. This requires OpenSSL 1.0.2, prior OpenSSL versions do not expose the required interfaces to override the signature function pointer for ECDSA. The only limitation is that the OpenSSL API misses some cleanup function (finish, for instance), hence I have yet
2003 Oct 08
4
OS/390 openssh
...ing(&auth->identities, &blen); + blob = buffer_get_binary(&auth->identities, &blen); *comment = buffer_get_string(&auth->identities, NULL); key = key_from_blob(blob, blen); xfree(blob); @@ -430,8 +430,8 @@ buffer_init(&msg); buffer_put_char(&msg, SSH2_AGENTC_SIGN_REQUEST); - buffer_put_string(&msg, blob, blen); - buffer_put_string(&msg, data, datalen); + buffer_put_binary(&msg, blob, blen); + buffer_put_binary(&msg, data, datalen); buffer_put_int(&msg, flags); xfree(blob); @@ -446,7 +446,7 @@ fatal("Bad authentication response: %d&...
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: