Searched refs:subject_name (Results 1 – 9 of 9) sorted by relevance
/mbedtls-3.5.0/programs/x509/ |
D | cert_write.c | 189 const char *subject_name; /* subject name for certificate */ member 305 char subject_name[256]; in main() local 345 opt.subject_name = DFL_SUBJECT_NAME; in main() 387 opt.subject_name = q; in main() 648 ret = mbedtls_x509_dn_gets(subject_name, sizeof(subject_name), in main() 657 opt.subject_name = subject_name; in main() 709 opt.subject_name = opt.issuer_name; in main() 719 if ((ret = mbedtls_x509write_crt_set_subject_name(&crt, opt.subject_name)) != 0) { in main()
|
D | cert_req.c | 108 const char *subject_name; /* subject name for certificate request */ member 191 opt.subject_name = DFL_SUBJECT_NAME; in main() 217 opt.subject_name = q; in main() 405 if ((ret = mbedtls_x509write_csr_set_subject_name(&req, opt.subject_name)) != 0) { in main()
|
/mbedtls-3.5.0/tests/data_files/ |
D | Makefile | 45 …_file=$@ filename=$(test_ca_key_file_rsa) password=$(test_ca_pwd_rsa) subject_name="C=NL,O=PolarSS… 165 …$(MBEDTLS_CERT_REQ) output_file=$@ filename=$(test_ca_key_file_ec) subject_name="C=NL,O=PolarSSL,C… 205 …$(MBEDTLS_CERT_REQ) output_file=$@ filename=$(test_ca_key_file_ec) subject_name="C=NL, O=PolarSSL,… 234 …$(MBEDTLS_CERT_WRITE) subject_key=rsa_pkcs1_1024_clear.pem subject_name="CN=dw.yonan.net" issuer_c… 247 …$(MBEDTLS_CERT_REQ) output_file=$@ filename=$< subject_name="C=NL,O=PolarSSL,CN=PolarSSL Client 2"… 288 …$(MBEDTLS_CERT_REQ) output_file=$@ filename=$< subject_name="C=NL,O=PolarSSL,CN=PolarSSL Test Clie… 992 …$(MBEDTLS_CERT_REQ) output_file=$@ filename=$< subject_name="C=NL,O=PolarSSL,CN=PolarSSL Server 1"… 996 …$(MBEDTLS_CERT_REQ) output_file=$@ filename=$< subject_name="C=NL,O=PolarSSL,CN=PolarSSL Server 1"… 1000 …$(MBEDTLS_CERT_REQ) output_file=$@ filename=$< subject_name="C=NL,O=PolarSSL,CN=PolarSSL Server 1"… 1004 …$(MBEDTLS_CERT_REQ) output_file=$@ filename=$< subject_name="C=NL,O=PolarSSL,CN=PolarSSL Server 1"… [all …]
|
/mbedtls-3.5.0/tests/suites/ |
D | test_suite_x509write.function | 153 const char *subject_name = "C=NL,O=PolarSSL,CN=PolarSSL Server 1"; 189 TEST_ASSERT(mbedtls_x509write_csr_set_subject_name(&req, subject_name) == 0); 267 const char *subject_name = "C=NL,O=PolarSSL,CN=PolarSSL Server 1"; 297 TEST_ASSERT(mbedtls_x509write_csr_set_subject_name(&req, subject_name) == 0); 325 char *subject_name, char *issuer_key_file, 431 TEST_ASSERT(mbedtls_x509write_crt_set_subject_name(&crt, subject_name) == 0);
|
/mbedtls-3.5.0/library/ |
D | x509write_csr.c | 75 const char *subject_name) in mbedtls_x509write_csr_set_subject_name() argument 77 return mbedtls_x509_string_to_names(&ctx->subject, subject_name); in mbedtls_x509write_csr_set_subject_name()
|
D | x509write_crt.c | 92 const char *subject_name) in mbedtls_x509write_crt_set_subject_name() argument 94 return mbedtls_x509_string_to_names(&ctx->subject, subject_name); in mbedtls_x509write_crt_set_subject_name()
|
/mbedtls-3.5.0/include/mbedtls/ |
D | x509_csr.h | 198 const char *subject_name);
|
D | x509_crt.h | 1013 const char *subject_name);
|
/mbedtls-3.5.0/ |
D | ChangeLog | 4469 * cert_write with selfsign should use issuer_name as subject_name
|