/openthread-latest/ |
D | README.md | 18 [ot-logo]: https://github.com/openthread/openthread/raw/main/doc/images/openthread_logo.png 30 …raw/main/doc/images/ot-contrib-amazon.png" alt="Amazon" width="200px"></a><a href="https://www.aqa…
|
/openthread-latest/third_party/mbedtls/repo/tests/suites/ |
D | test_suite_alignment.function | 15 uint8_t raw[8] = { 0 }; 17 if (mbedtls_test_unhexify(raw, sizeof(raw), hex_string, &olen) != 0) { 23 *result |= ((uint64_t) raw[i]) << ((olen - i - 1) * 8); 33 /* Define 64-bit aligned raw byte array */ 34 uint64_t raw[2]; 37 uint8_t *x = (uint8_t *) raw; 38 for (size_t i = 0; i < sizeof(raw); i++) { 57 /* Define expected result by manually aligning the raw bytes, and 62 memcpy(&raw_aligned_64, ((uint8_t *) &raw) + offset, size / 8); 248 /* Define 64-bit aligned raw byte array */ [all …]
|
D | test_suite_psa_crypto_persistent_key.data | 37 Save maximum-size persistent raw key 41 Save larger than maximum-size persistent raw key 76 import/export persistent raw key: 1 byte 87 import/export persistent raw key file not exist: 1 byte 102 import/export persistent raw key with restart: 1 byte 113 import/export persistent raw key file not exist with restart: 1 byte
|
D | test_suite_psa_crypto_util.data | 37 ECDSA Raw -> DER, 256bit, Invalid raw signature (r 1 byte shorter) 41 ECDSA Raw -> DER, 256bit, Invalid raw signature (r and s 1 byte shorter) 45 ECDSA Raw -> DER, 256bit, Invalid raw signature (r 1 byte longer) 49 ECDSA Raw -> DER, 256bit, Invalid raw signature (r and s 1 byte longer) 89 ECDSA DER -> Raw, 256bit, r size 1 byte larger than allowed for output raw coordinate
|
D | test_suite_psa_crypto_metadata.data | 217 Asymmetric signature: RSA PKCS#1 v1.5 raw 329 Key agreement: FFDH, raw output 341 Key agreement: ECDH, raw output 356 Key type: raw data
|
/openthread-latest/third_party/mbedtls/repo/library/ |
D | x509_crl.c | 242 cur_entry->raw.tag = **p; in x509_get_entries() 248 cur_entry->raw.p = *p; in x509_get_entries() 249 cur_entry->raw.len = len2; in x509_get_entries() 336 crl->raw.p = p; in mbedtls_x509_crl_parse_der() 337 crl->raw.len = buflen; in mbedtls_x509_crl_parse_der() 468 end = crl->raw.p + crl->raw.len; in mbedtls_x509_crl_parse_der() 634 while (entry != NULL && entry->raw.len != 0) { in mbedtls_x509_crl_info() 699 if (crl_cur->raw.p != NULL) { in mbedtls_x509_crl_free() 700 mbedtls_zeroize_and_free(crl_cur->raw.p, crl_cur->raw.len); in mbedtls_x509_crl_free()
|
D | psa_util.c | 433 int mbedtls_ecdsa_raw_to_der(size_t bits, const unsigned char *raw, size_t raw_len, in mbedtls_ecdsa_raw_to_der() argument 449 memcpy(r, raw, coordinate_len); in mbedtls_ecdsa_raw_to_der() 450 memcpy(s, raw + coordinate_len, coordinate_len); in mbedtls_ecdsa_raw_to_der() 505 unsigned char *raw, size_t coordinate_size) in convert_der_to_raw_single_int() argument 544 memcpy(raw + padding_len, p, unpadded_len); in convert_der_to_raw_single_int() 551 unsigned char *raw, size_t raw_size, size_t *raw_len) in mbedtls_ecdsa_der_to_raw() argument 596 memcpy(raw, raw_tmp, 2 * coordinate_size); in mbedtls_ecdsa_der_to_raw()
|
D | x509_csr.c | 297 csr->raw.p = p; in mbedtls_x509_csr_parse_der_internal() 298 csr->raw.len = len; in mbedtls_x509_csr_parse_der_internal() 399 end = csr->raw.p + csr->raw.len; in mbedtls_x509_csr_parse_der_internal() 632 if (csr->raw.p != NULL) { in mbedtls_x509_csr_free() 633 mbedtls_zeroize_and_free(csr->raw.p, csr->raw.len); in mbedtls_x509_csr_free()
|
D | pkcs7.c | 566 pkcs7->raw.p = p = mbedtls_calloc(1, buflen); in mbedtls_pkcs7_parse_der() 567 if (pkcs7->raw.p == NULL) { in mbedtls_pkcs7_parse_der() 572 pkcs7->raw.len = buflen; in mbedtls_pkcs7_parse_der() 592 p = pkcs7->raw.p; in mbedtls_pkcs7_parse_der() 752 if (pkcs7 == NULL || pkcs7->raw.p == NULL) { in mbedtls_pkcs7_free() 756 mbedtls_free(pkcs7->raw.p); in mbedtls_pkcs7_free() 770 pkcs7->raw.p = NULL; in mbedtls_pkcs7_free()
|
D | x509_crt.c | 1112 crt->raw.len = (size_t) (crt_end - buf); in x509_crt_parse_der_core() 1115 crt->raw.p = p = mbedtls_calloc(1, crt->raw.len); in x509_crt_parse_der_core() 1116 if (crt->raw.p == NULL) { in x509_crt_parse_der_core() 1120 memcpy(crt->raw.p, buf, crt->raw.len); in x509_crt_parse_der_core() 1123 p += crt->raw.len - len; in x509_crt_parse_der_core() 1126 crt->raw.p = (unsigned char *) buf; in x509_crt_parse_der_core() 2454 if (crt->raw.len == cur->raw.len && in x509_crt_check_ee_locally_trusted() 2455 memcmp(crt->raw.p, cur->raw.p, crt->raw.len) == 0) { in x509_crt_check_ee_locally_trusted() 3246 if (cert_cur->raw.p != NULL && cert_cur->own_buffer) { in mbedtls_x509_crt_free() 3247 mbedtls_zeroize_and_free(cert_cur->raw.p, cert_cur->raw.len); in mbedtls_x509_crt_free()
|
/openthread-latest/third_party/mbedtls/repo/include/mbedtls/ |
D | psa_util.h | 165 int mbedtls_ecdsa_raw_to_der(size_t bits, const unsigned char *raw, size_t raw_len, 182 unsigned char *raw, size_t raw_size, size_t *raw_len);
|
D | x509_crl.h | 41 mbedtls_x509_buf raw; member 65 mbedtls_x509_buf raw; /**< The raw certificate data (DER). */ member
|
D | pkcs7.h | 139 mbedtls_pkcs7_buf MBEDTLS_PRIVATE(raw);
|
/openthread-latest/third_party/mbedtls/repo/tests/data_files/ |
D | test_certs.h.jinja2 | 26 #define {{name}} {% raw -%} { {%- endraw %} {{ '\\' | put_to_column(position=80-11-name|length)}} 34 {% raw -%} } {%- endraw %}
|
/openthread-latest/third_party/mbedtls/repo/programs/ssl/ |
D | ssl_test_lib.c | 335 if (mbedtls_x509_crt_parse_der(first, ca->raw.p, ca->raw.len) != 0) { in ca_callback() 342 if (mbedtls_x509_crt_parse_der(first, ca->raw.p, ca->raw.len) != 0) { in ca_callback()
|
/openthread-latest/script/ |
D | check-posix-pty | 104 socat -d -d pty,raw,echo=0 pty,raw,echo=0 >/dev/null 2>$SOCAT_OUTPUT &
|
/openthread-latest/tools/tcat_ble_client/auth-generate/ext/ |
D | CommCert1.ext | 9 # Because ASN1:OCTETSTRING doesn't work with hex input, we use raw DER here. Tag 0x04 is OCTETSTRIN…
|
D | DeviceCert1.ext | 12 # Because ASN1:OCTETSTRING doesn't work with hex input, we use raw DER here. Tag 0x04 is OCTETSTRIN…
|
D | DeviceCert2.ext | 12 # Because ASN1:OCTETSTRING doesn't work with hex input, we use raw DER here. Tag 0x04 is OCTETSTRIN…
|
D | CommCert4.ext | 9 # Because ASN1:OCTETSTRING doesn't work with hex input, we use raw DER here. Tag 0x04 is OCTETSTRIN…
|
D | CommCert3.ext | 9 # Because ASN1:OCTETSTRING doesn't work with hex input, we use raw DER here. Tag 0x04 is OCTETSTRIN…
|
D | CommCert2.ext | 9 # Because ASN1:OCTETSTRING doesn't work with hex input, we use raw DER here. Tag 0x04 is OCTETSTRIN…
|
/openthread-latest/tests/scripts/thread-cert/ |
D | dtls.py | 568 def __init__(self, raw): argument 570 self.raw = raw 574 return self.raw 587 return "ApplicationData(raw_length={})".format(len(self.raw))
|
/openthread-latest/tools/spi-hdlc-adapter/ |
D | README.md | 15 - `--raw`: Do not encode/decode packets using HDLC. Instead, write whole, raw frames to the specifi… 16 - `--mtu=[MTU]`: Specify the MTU. Currently only used in raw mode. Default and maximum value is 204…
|
/openthread-latest/tools/ot-fct/ |
D | README.md | 35 - rawpowersetting: The raw power setting hex string.
|