search for: auth_rsa_read_key

Displaying 4 results from an estimated 4 matches for "auth_rsa_read_key".

2002 Jan 29
2
Key fingerprint logging
...p; *cp != '\t')); cp++) { if (*cp == '\\' && cp[1] == '"') cp++; /* Skip both */ else if (*cp == '"') quoted = !quoted; } } else - options = NULL; + key_options = NULL; /* Parse the key from the line. */ if (!auth_rsa_read_key(&cp, &bits, pk->e, pk->n)) { debug("%.100s, line %lu: non ssh1 key syntax", file, linenum); @@ -230,11 +230,11 @@ /* We have found the desired key. */ /* * If our options do not allow this key to be used, * do not send challenge. */ - if (!auth...
2001 Nov 20
0
Patch: 3.0.1p1: rename a conflicting variable
...= ' ' && *cp != '\t')); cp++) { if (*cp == '\\' && cp[1] == '"') cp++; /* Skip both */ @@ -207,7 +206,7 @@ quoted = !quoted; } } else - options = NULL; + optionsp = NULL; /* Parse the key from the line. */ if (!auth_rsa_read_key(&cp, &bits, pk->e, pk->n)) { @@ -232,7 +231,7 @@ * If our options do not allow this key to be used, * do not send challenge. */ - if (!auth_parse_options(pw, options, file, linenum)) + if (!auth_parse_options(pw, optionsp, file, linenum)) continue; /* Perform th...
2001 Dec 04
0
PATCH: log key fingerprint upon successful login
...= ' ' && *cp != '\t')); cp++) { if (*cp == '\\' && cp[1] == '"') cp++; /* Skip both */ @@ -207,7 +207,7 @@ quoted = !quoted; } } else - options = NULL; + optionsp = NULL; /* Parse the key from the line. */ if (!auth_rsa_read_key(&cp, &bits, pk->e, pk->n)) { @@ -232,7 +232,7 @@ * If our options do not allow this key to be used, * do not send challenge. */ - if (!auth_parse_options(pw, options, file, linenum)) + if (!auth_parse_options(pw, optionsp, file, linenum)) continue; /* Perform th...
2000 Jan 19
3
AIX openssh patches
...k; char buf[1024]; struct sockaddr_un sunaddr; *** ssh-keygen.c.DIST Wed Nov 24 19:54:59 1999 --- ssh-keygen.c Wed Jan 19 11:02:18 2000 *************** *** 101,107 **** if (f && fgets(line, sizeof(line), f)) { cp = line; line[strlen(line) - 1] = '\0'; ! if (auth_rsa_read_key(&cp, &dummy, e, n)) { public_key->e = e; public_key->n = n; comment = xstrdup(cp ? cp : "no comment"); --- 101,107 ---- if (f && fgets(line, sizeof(line), f)) { cp = line; line[strlen(line) - 1] = '\0'; ! if (auth_rsa_read_k...