Searched refs:identity_file (Results 1 – 1 of 1) sorted by relevance
| /freebsd/crypto/openssh/ |
| H A D | ssh-keygen.c | 93 static char identity_file[PATH_MAX]; variable 280 snprintf(identity_file, sizeof(identity_file), in ask_filename() 282 printf("%s (%s): ", prompt, identity_file); in ask_filename() 288 strlcpy(identity_file, buf, sizeof(identity_file)); in ask_filename() 405 if (stat(identity_file, &st) == -1) in do_convert_to() 406 fatal("%s: %s: %s", __progname, identity_file, strerror(errno)); in do_convert_to() 407 if ((r = sshkey_load_public(identity_file, &k, NULL)) != 0) in do_convert_to() 408 k = load_identity(identity_file, NULL); in do_convert_to() 611 if ((fp = fopen(identity_file, "r")) == NULL) in do_convert_from_ssh2() 612 fatal("%s: %s: %s", __progname, identity_file, strerror(errno)); in do_convert_from_ssh2() [all …]
|