Lines Matching defs:key_file
184 " key_file=%%s default: see note after key_file2\n" \
185 " key_pwd=%%s Password for key specified by key_file argument\n" \
190 " note: if neither crt_file/key_file nor crt_file2/key_file2 are used,\n" \
216 " async_private_delay1=%%d Asynchronous delay for key_file or preloaded key\n" \
618 const char *key_file; /* the file with the server key */
794 char *crt_file, *key_file, *ca_file, *auth_str;
812 GET_ITEM(key_file);
828 mbedtls_pk_parse_keyfile(new->key, key_file, "", rng_get, &rng) != 0) {
1696 opt.key_file = DFL_KEY_FILE;
1890 } else if (strcmp(p, "key_file") == 0) {
1891 opt.key_file = q;
2629 if (strlen(opt.key_file) && strcmp(opt.key_file, "none") != 0) {
2631 if ((ret = mbedtls_pk_parse_keyfile(&pkey, opt.key_file,
2639 mbedtls_printf(" failed\n ! crt_file without key_file or vice-versa\n\n");
2667 strcmp(opt.key_file, "none") != 0 &&