Lines Matching refs:crt_file2
187 " crt_file2=%%s Your second cert and chain (in bottom to top order, top may be omitted)\n" \
190 " note: if neither crt_file/key_file nor crt_file2/key_file2 are used,\n" \
621 const char *crt_file2; /* the file with the 2nd server certificate */
1699 opt.crt_file2 = DFL_CRT_FILE2;
1900 else if (strcmp(p, "crt_file2") == 0) {
1901 opt.crt_file2 = q;
2643 if (strlen(opt.crt_file2) && strcmp(opt.crt_file2, "none") != 0) {
2645 if ((ret = mbedtls_x509_crt_parse_file(&srvcert2, opt.crt_file2)) != 0) {
2661 mbedtls_printf(" failed\n ! crt_file2 without key_file2 or vice-versa\n\n");
2669 strcmp(opt.crt_file2, "none") != 0 &&