Home
last modified time | relevance | path

Searched refs:subject_name (Results 1 – 9 of 9) sorted by relevance

/openthread-3.6.0/third_party/mbedtls/repo/programs/x509/
Dcert_write.c169 const char *subject_name; /* subject name for certificate */ member
229 char subject_name[256]; in main() local
267 opt.subject_name = DFL_SUBJECT_NAME; in main()
307 opt.subject_name = q; in main()
554 ret = mbedtls_x509_dn_gets( subject_name, sizeof(subject_name), in main()
564 opt.subject_name = subject_name; in main()
621 opt.subject_name = opt.issuer_name; in main()
631 if( ( ret = mbedtls_x509write_crt_set_subject_name( &crt, opt.subject_name ) ) != 0 ) in main()
Dcert_req.c117 const char *subject_name; /* subject name for certificate request */ member
186 opt.subject_name = DFL_SUBJECT_NAME; in main()
215 opt.subject_name = q; in main()
335 if( ( ret = mbedtls_x509write_csr_set_subject_name( &req, opt.subject_name ) ) != 0 ) in main()
/openthread-3.6.0/third_party/mbedtls/repo/tests/data_files/
DMakefile45 …_file=$@ filename=$(test_ca_key_file_rsa) password=$(test_ca_pwd_rsa) subject_name="C=NL,O=PolarSS…
115 …$(MBEDTLS_CERT_REQ) output_file=$@ filename=$(test_ca_key_file_ec) subject_name="C=NL,O=PolarSSL,C…
155 …$(MBEDTLS_CERT_REQ) output_file=$@ filename=$(test_ca_key_file_ec) subject_name="C=NL, O=PolarSSL,…
184 …$(MBEDTLS_CERT_WRITE) subject_key=rsa_pkcs1_1024_clear.pem subject_name="CN=dw.yonan.net" issuer_c…
197 …$(MBEDTLS_CERT_REQ) output_file=$@ filename=$< subject_name="C=NL,O=PolarSSL,CN=PolarSSL Client 2"…
238 …$(MBEDTLS_CERT_REQ) output_file=$@ filename=$< subject_name="C=NL,O=PolarSSL,CN=PolarSSL Test Clie…
893 …$(MBEDTLS_CERT_REQ) output_file=$@ filename=$< subject_name="C=NL,O=PolarSSL,CN=PolarSSL Server 1"…
897 …$(MBEDTLS_CERT_REQ) output_file=$@ filename=$< subject_name="C=NL,O=PolarSSL,CN=PolarSSL Server 1"…
901 …$(MBEDTLS_CERT_REQ) output_file=$@ filename=$< subject_name="C=NL,O=PolarSSL,CN=PolarSSL Server 1"…
905 …$(MBEDTLS_CERT_REQ) output_file=$@ filename=$< subject_name="C=NL,O=PolarSSL,CN=PolarSSL Server 1"…
[all …]
/openthread-3.6.0/third_party/mbedtls/repo/tests/suites/
Dtest_suite_x509write.function91 const char *subject_name = "C=NL,O=PolarSSL,CN=PolarSSL Server 1";
102 TEST_ASSERT( mbedtls_x509write_csr_set_subject_name( &req, subject_name ) == 0 );
156 const char *subject_name = "C=NL,O=PolarSSL,CN=PolarSSL Server 1";
172 TEST_ASSERT( mbedtls_x509write_csr_set_subject_name( &req, subject_name ) == 0 );
198 char *subject_name, char *issuer_key_file,
259 TEST_ASSERT( mbedtls_x509write_crt_set_subject_name( &crt, subject_name ) == 0 );
/openthread-3.6.0/third_party/mbedtls/repo/include/mbedtls/
Dx509_csr.h178 const char *subject_name );
Dx509_crt.h929 const char *subject_name );
/openthread-3.6.0/third_party/mbedtls/repo/library/
Dx509write_csr.c79 const char *subject_name ) in mbedtls_x509write_csr_set_subject_name() argument
81 return mbedtls_x509_string_to_names( &ctx->subject, subject_name ); in mbedtls_x509write_csr_set_subject_name()
Dx509write_crt.c87 const char *subject_name ) in mbedtls_x509write_crt_set_subject_name() argument
89 return mbedtls_x509_string_to_names( &ctx->subject, subject_name ); in mbedtls_x509write_crt_set_subject_name()
/openthread-3.6.0/third_party/mbedtls/repo/
DChangeLog3455 * cert_write with selfsign should use issuer_name as subject_name