Home | History | Annotate | Download | only in openssh

Lines Matching defs:file

7  * based on RSA authentication.  This file also contains functions to check
13 * incompatible with the protocol description in the RFC file, it must be
64 * The .ssh/authorized_keys file contains public keys, one per line, in the
171 rsa_key_allowed_in_file(struct passwd *pw, char *file,
176 FILE *f;
180 debug("trying public RSA key file %s", file);
181 if ((f = auth_openkeyfile(file, pw, options.strict_modes)) == NULL)
190 while (read_keyfile_line(f, file, line, sizeof(line), &linenum) != -1) {
222 file, linenum);
239 file, linenum, BN_num_bits(key->rsa->n), bits);
244 debug("matching key found: file %s, line %lu %s %s",
245 file, linenum, key_type(key), fp);
257 if (!auth_parse_options(pw, key_options, file, linenum))
266 /* Close the file. */
286 char *file;
294 file = expand_authorized_keys(
296 allowed = rsa_key_allowed_in_file(pw, file, client_n, rkey);
297 free(file);