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
61 * The .ssh/authorized_keys file contains public keys, one per line, in the
164 rsa_key_allowed_in_file(struct passwd *pw, char *file,
170 FILE *f;
174 debug("trying public RSA key file %s", file);
175 if ((f = auth_openkeyfile(file, pw, options.strict_modes)) == NULL)
184 while (read_keyfile_line(f, file, line, sizeof(line), &linenum) != -1) {
216 file, linenum);
233 file, linenum, BN_num_bits(key->rsa->n), bits);
244 if (!auth_parse_options(pw, key_options, file, linenum))
253 /* Close the file. */
273 char *file;
279 file = expand_authorized_keys(
281 allowed = rsa_key_allowed_in_file(pw, file, client_n, rkey);
282 xfree(file);