Home
last modified time | relevance | path

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

/freebsd-13.1/usr.sbin/uefisign/
H A Duefisign.c340 const char *certpath = NULL, *keypath = NULL, *outpath = NULL, *inpath = NULL; in main() local
359 if (keypath == NULL) in main()
360 keypath = checked_strdup(optarg); in main()
386 if (keypath != NULL) in main()
393 if (keypath == NULL) in main()
428 keyfp = checked_fopen(keypath, "r"); in main()
432 errx(1, "failed to load private key from %s", keypath); in main()
/freebsd-13.1/contrib/sqlite3/tea/win/
H A Dnmakehlp.c722 static int LocateDependencyHelper(const char *dir, const char *keypath) in LocateDependencyHelper() argument
730 if (dir == NULL || keypath == NULL) in LocateDependencyHelper()
737 keylen = strlen(keypath); in LocateDependencyHelper()
767 strncpy(path+dirlen+1+sublen+1, keypath, keylen+1); in LocateDependencyHelper()
792 static int LocateDependency(const char *keypath) in LocateDependency() argument
799 ret = LocateDependencyHelper(paths[i], keypath); in LocateDependency()
/freebsd-13.1/crypto/openssh/
H A Dssh-keygen.c2458 load_sign_key(const char *keypath, const struct sshkey *pubkey) in load_sign_key() argument
2460 size_t i, slen, plen = strlen(keypath); in load_sign_key()
2461 char *privpath = xstrdup(keypath); in load_sign_key()
2478 "path %s instead", keypath, privpath); in load_sign_key()
2481 error("Couldn't load identity %s", keypath); in load_sign_key()
2486 keypath, privpath); in load_sign_key()
2605 sig_sign(const char *keypath, const char *sig_namespace, int argc, char **argv) in sig_sign() argument
2620 if ((r = sshkey_load_public(keypath, &pubkey, NULL)) != 0) { in sig_sign()
2621 error_r(r, "Couldn't load public key %s", keypath); in sig_sign()
2636 if ((privkey = load_sign_key(keypath, pubkey)) == NULL) in sig_sign()
/freebsd-13.1/contrib/sendmail/src/
H A Dqueue.c6956 write_key_file(keypath, key) in write_key_file() argument
6957 char *keypath; in write_key_file()
6965 if (keypath == NULL || *keypath == '\0')
6970 keyf = safefopen(keypath, O_WRONLY|O_TRUNC, FileMode, sff);
6974 keypath, sm_errstring(errno));
6990 keypath, (long) RunAsUid, sm_errstring(err));
7013 read_key_file(keypath, key) in read_key_file() argument
7014 char *keypath; in read_key_file()
7021 if (keypath == NULL || *keypath == '\0')
7026 keyf = safefopen(keypath, O_RDONLY, FileMode, sff);
[all …]
/freebsd-13.1/contrib/llvm-project/clang/include/clang/Driver/
H A DOptions.td379 // C++ code that will be assigned to the keypath when the flag is present.