Home
last modified time | relevance | path

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

/freebsd-10-stable/crypto/openssh/
Dssh-add.c112 char *certpath = NULL, *comment = NULL; in delete_file() local
132 xasprintf(&certpath, "%s-cert.pub", filename); in delete_file()
133 if ((r = sshkey_load_public(certpath, &cert, &comment)) != 0) { in delete_file()
136 certpath, ssh_err(r)); in delete_file()
142 certpath, filename); in delete_file()
145 fprintf(stderr, "Identity removed: %s (%s)\n", certpath, in delete_file()
150 certpath, ssh_err(r)); in delete_file()
155 free(certpath); in delete_file()
185 char msg[1024], *certpath = NULL; in add_file() local
285 xasprintf(&certpath, "%s-cert.pub", filename); in add_file()
[all …]
/freebsd-10-stable/usr.sbin/uefisign/
Duefisign.c339 const char *certpath = NULL, *keypath = NULL, *outpath = NULL, *inpath = NULL; in main() local
352 certpath = checked_strdup(optarg); in main()
374 if (certpath != NULL) in main()
381 if (certpath == NULL) in main()
407 certfp = checked_fopen(certpath, "r"); in main()
411 errx(1, "failed to load certificate from %s", certpath); in main()