Home
last modified time | relevance | path

Searched refs:serial (Results 1 – 25 of 41) sorted by relevance

12

/openthread-latest/third_party/mbedtls/repo/tests/data_files/
Dtest-ca.server1.opensslconf7 serial = test-ca.server1.serial
Dtest-ca.server1.future-crl.opensslconf7 serial = test-ca.server1.serial
Dtest-ca.server1.test_serial.opensslconf7 serial = test-ca.server1.tmp.serial
DMakefile56 …$(MBEDTLS_CERT_WRITE) is_ca=1 serial=3 request_file=test-ca.req.sha256 selfsign=1 issuer_name="C=N…
68 $(MBEDTLS_CERT_WRITE) is_ca=1 serial=3 selfsign=1 \
75 …$(MBEDTLS_CERT_WRITE) is_ca=1 serial=3 request_file=test-ca.req.sha256 selfsign=1 issuer_name="C=N…
83 …$(MBEDTLS_CERT_WRITE) is_ca=1 serial=3 request_file=test-ca.req.sha256 selfsign=1 issuer_name="C=N…
197 $(MBEDTLS_CERT_WRITE) is_ca=1 serial=13926223505202072808 selfsign=1 \
213 …$(MBEDTLS_CERT_WRITE) is_ca=1 serial=13926223505202072808 request_file=test-ca2.req.sha256 selfsig…
335 …$(MBEDTLS_CERT_WRITE) request_file=$< serial=4 issuer_crt=$(test_ca_crt) issuer_key=$(test_ca_key_…
338 …$(MBEDTLS_CERT_WRITE) request_file=$< serial=4 issuer_crt=$(test_ca_crt) issuer_key=$(test_ca_key_…
408 $(MBEDTLS_CERT_WRITE) subject_key=$< subject_name="C=NL, O=PolarSSL, CN=localhost" serial=17 \
424 …$(MBEDTLS_CERT_WRITE) request_file=cli2.req.sha256 serial=13 selfsign=0 issuer_name="C=NL,O=PolarS…
[all …]
/openthread-latest/third_party/mbedtls/repo/programs/x509/
Dcert_write.c191 const char *serial; /* serial number string (decimal) */ member
308 unsigned char serial[MBEDTLS_X509_RFC5280_MAX_SERIAL_LEN]; in main() local
330 memset(serial, 0, sizeof(serial)); in main()
358 opt.serial = DFL_SERIAL; in main()
410 opt.serial = q; in main()
696 ret = mbedtls_test_unhexify(serial, sizeof(serial), in main()
699 ret = parse_serial_decimal_format(serial, sizeof(serial), in main()
700 opt.serial, &serial_len); in main()
848 ret = mbedtls_x509write_crt_set_serial_raw(&crt, serial, serial_len); in main()
/openthread-latest/third_party/mbedtls/repo/library/
Dx509write_crt.c94 const mbedtls_mpi *serial) in mbedtls_x509write_crt_set_serial() argument
100 tmp_len = mbedtls_mpi_size(serial); in mbedtls_x509write_crt_set_serial()
107 ret = mbedtls_mpi_write_binary(serial, ctx->serial, tmp_len); in mbedtls_x509write_crt_set_serial()
117 unsigned char *serial, size_t serial_len) in mbedtls_x509write_crt_set_serial_raw() argument
124 memcpy(ctx->serial, serial, serial_len); in mbedtls_x509write_crt_set_serial_raw()
552 ctx->serial, ctx->serial_len)); in mbedtls_x509write_crt_der()
Dx509.c64 mbedtls_x509_buf *serial) in mbedtls_x509_get_serial() argument
79 serial->tag = *(*p)++; in mbedtls_x509_get_serial()
81 if ((ret = mbedtls_asn1_get_len(p, end, &serial->len)) != 0) { in mbedtls_x509_get_serial()
85 serial->p = *p; in mbedtls_x509_get_serial()
86 *p += serial->len; in mbedtls_x509_get_serial()
945 int mbedtls_x509_serial_gets(char *buf, size_t size, const mbedtls_x509_buf *serial) in mbedtls_x509_serial_gets() argument
954 nr = (serial->len <= 32) in mbedtls_x509_serial_gets()
955 ? serial->len : 28; in mbedtls_x509_serial_gets()
958 if (i == 0 && nr > 1 && serial->p[i] == 0x0) { in mbedtls_x509_serial_gets()
963 serial->p[i], (i < nr - 1) ? ":" : ""); in mbedtls_x509_serial_gets()
[all …]
Dssl_cookie.c69 ctx->serial = 0; in mbedtls_ssl_cookie_init()
207 t = ctx->serial++; in mbedtls_ssl_cookie_write()
359 cur_time = ctx->serial; in mbedtls_ssl_cookie_check()
Dx509_internal.h42 mbedtls_x509_buf *serial);
Dx509_crt.c1152 (ret = mbedtls_x509_get_serial(&p, end, &crt->serial)) != 0 || in x509_crt_parse_der_core()
1774 ret = mbedtls_x509_serial_gets(p, n, &crt->serial); in mbedtls_x509_crt_info()
1992 while (cur != NULL && cur->serial.len != 0) { in mbedtls_x509_crt_is_revoked()
1993 if (crt->serial.len == cur->serial.len && in mbedtls_x509_crt_is_revoked()
1994 memcmp(crt->serial.p, cur->serial.p, crt->serial.len) == 0) { in mbedtls_x509_crt_is_revoked()
/openthread-latest/tools/harness-automation/autothreadharness/
Drf_shield_controller.py33 import serial
81 self._conn = serial.Serial(self._port, 9600)
Dopen_thread_controller.py36 import serial
109 self.handle = serial.Serial(self.port, 115200, timeout=0, xonxoff=True)
/openthread-latest/third_party/mbedtls/repo/include/mbedtls/
Dx509_crt.h48 mbedtls_x509_buf serial; /**< Unique id for certificate issued by a specific CA. */ member
219 unsigned char MBEDTLS_PRIVATE(serial)[MBEDTLS_X509_RFC5280_MAX_SERIAL_LEN];
970 mbedtls_x509write_cert *ctx, const mbedtls_mpi *serial);
987 unsigned char *serial, size_t serial_len);
Dssl_cookie.h52 unsigned long MBEDTLS_PRIVATE(serial); /*!< serial number for expiration */
Dx509_crl.h43 mbedtls_x509_buf serial; member
Dpkcs7.h110 mbedtls_x509_buf MBEDTLS_PRIVATE(serial);
Dx509.h373 int mbedtls_x509_serial_gets(char *buf, size_t size, const mbedtls_x509_buf *serial);
/openthread-latest/tools/otci/otci/
Dconnectors.py145 import serial
146 self.__serial = serial.Serial(self.__dev, self.__baudrate, timeout=0.1, exclusive=True)
Dcommand_handlers.py360 def __init__(self, serial: str):
363 self.__serial = serial
365 adb = AdbDeviceUsb(serial, port_path=None, default_transport_timeout_s=9.0)
/openthread-latest/tools/harness-automation/doc/
Dcomponents.gv17 OpenThreadController -> DUT [label="serial port"];
/openthread-latest/tools/harness-thci/
DREADME.md10 …y the THCI implementation directly to match their platform (for example, serial baud rate). Altern…
42 7. Get the DUT serial port hardware identifier and add a new platform group named OpenThread_WpanCt…
50 The above is for the serial connection mode between the DUT and the Host PC. The ssh connection mod…
/openthread-latest/tools/harness-automation/
DREADME.rst25 If ``-l`` is given, ``NAME`` is the serial port device name. Otherwise ``NAME`` is test case name. …
/openthread-latest/third_party/mbedtls/repo/tests/suites/
Dtest_suite_x509parse.data91 … hardware type \: 1.3.6.1.4.1.17.3\n hardware serial number \: 31323334…
95 … hardware type \: 1.3.6.1.4.1.17.3\n hardware serial number \: 31323380…
127 … hardware type \: 1.3.6.1.4.1.17.3\n hardware serial number \: 31323334…
199 …e \: hardware module name \: hardware type \: 1.3.6.1.4.1.17.3, hardware serial number \: 31323334…
203 …e \: hardware module name \: hardware type \: 1.3.6.1.4.1.17.3, hardware serial number \: 31323380…
223 …e \: hardware module name \: hardware type \: 1.3.6.1.4.1.17.3, hardware serial number \: 31323334…
395 … hardware type \: 1.3.6.1.4.1.17.3\n hardware serial number \: 31323380…
1187 …ED:"depth 1 - serial C1\:43\:E2\:7E\:62\:43\:CC\:E8 - subject C=NL, O=PolarSSL, CN=Polarssl Test E…
1191 …-selfsigned.crt":"data_files/server5-selfsigned.crt":"NULL":0:"depth 0 - serial 53\:A2\:CB\:4B\:12…
1195 …r5-ss-expired.crt":"NULL":MBEDTLS_ERR_X509_CERT_VERIFY_FAILED:"depth 0 - serial D8\:64\:61\:05\:E3…
[all …]
Dtest_suite_x509parse.function209 ret = mbedtls_snprintf(p, n, "depth %d - serial ", certificate_depth);
212 ret = mbedtls_x509_serial_gets(p, n, &crt->serial);
258 ret = mbedtls_snprintf(p, n, ", hardware serial number : ");
1676 data_t *serial,
1714 if (serial->len > 0) {
1718 serial->x, serial->len), 0);
1719 TEST_EQUAL(crt.authority_key_id.authorityCertSerialNumber.len, serial->len);
/openthread-latest/tools/spi-hdlc-adapter/
DREADME.md3 … interface as if it were an HDLC-lite encoded bidirectional asynchronous serial stream. It uses th…
15 …es to the specified input and output FDs. This is useful for emulating a serial port, or when data…

12