Displaying 2 results from an estimated 2 matches for "try_rsa_authentication".
2010 Jan 12
2
[patch] Automatically add keys to agent
...sponse: %d",
type);
}
- ssh_close_authentication_connection(auth);
BN_clear_free(challenge);
debug("RSA authentication using agent refused.");
return 0;
@@ -200,7 +192,7 @@ respond_to_rsa_challenge(BIGNUM * challenge, RSA * prv
* the user using it.
*/
static int
-try_rsa_authentication(int idx)
+try_rsa_authentication(int idx, AuthenticationConnection *auth)
{
BIGNUM *challenge;
Key *public, *private;
@@ -293,6 +285,19 @@ try_rsa_authentication(int idx)
return 0;
}
+ /*
+ * Consider adding key to agent. We add keys for the default lifetime
+ * with no need to confir...
2001 Nov 25
2
displaying identity key comment string in passphrase prompt
...= &options->display_comment_str;
> goto parse_flag;
>
801a808
> options->display_comment_str = -1;
926a934,935
> if (options->display_comment_str == -1)
> options->display_comment_str = 0;
=============== sshconnect1.c
- in try_rsa_authentication() add a keycomment pointer
and a few lines to print the keycomment string if requested
and the comment string exists.
diff:
212a213
> char *keycomment; //BUCC: key comment string
259c260,267
< private = key_load_private_type(KEY_RSA1, authfile,...