Home
last modified time | relevance | path

Searched refs:identity_file (Results 1 – 1 of 1) sorted by relevance

/freebsd/crypto/openssh/
H A Dssh-keygen.c97 static char identity_file[PATH_MAX]; variable
301 snprintf(identity_file, sizeof(identity_file), in ask_filename()
303 printf("%s (%s): ", prompt, identity_file); in ask_filename()
309 strlcpy(identity_file, buf, sizeof(identity_file)); in ask_filename()
441 if (stat(identity_file, &st) == -1) in do_convert_to()
442 fatal("%s: %s: %s", __progname, identity_file, strerror(errno)); in do_convert_to()
443 if ((r = sshkey_load_public(identity_file, &k, NULL)) != 0) in do_convert_to()
444 k = load_identity(identity_file, NULL); in do_convert_to()
676 if ((fp = fopen(identity_file, "r")) == NULL) in do_convert_from_ssh2()
677 fatal("%s: %s: %s", __progname, identity_file, strerror(errno)); in do_convert_from_ssh2()
[all …]