Displaying 1 result from an estimated 1 matches for "auth_rsa_file".
2002 Jan 23
0
[PATCH] Add multiple AuthorizedKeyFiles options
...==================
RCS file: /cvs/openssh/auth-rsa.c,v
retrieving revision 1.41
diff -u -r1.41 auth-rsa.c
--- auth-rsa.c 22 Jan 2002 12:16:33 -0000 1.41
+++ auth-rsa.c 23 Jan 2002 11:11:28 -0000
@@ -58,6 +58,8 @@
* our challenge; returns zero if the client gives a wrong answer.
*/
+static int auth_rsa_file(struct passwd *pw, BIGNUM *client_n, char *file);
+
int
auth_rsa_challenge_dialog(RSA *pk)
{
@@ -122,11 +124,33 @@
* 0 if the client could not be authenticated, and 1 if authentication was
* successful. This may exit if there is a serious protocol violation.
*/
+int
+auth_rsa(struct pass...