Home
last modified time | relevance | path

Searched refs:rb (Results 1 – 8 of 8) sorted by relevance

/openthread-latest/third_party/mbedtls/repo/tests/scripts/
Dcheck_files.py167 _shebang_re = re.compile(rb'^#! ?(?:/bin/(bash|sh)(?: -[^\n ]*)?'
168 rb'|/usr/bin/env ([^\n /]+))$')
388 COPYRIGHT_HOLDER = rb'The Mbed TLS Contributors'
390 COPYRIGHT_RE = re.compile(rb'.*\bcopyright\s+((?:\w|\s|[()]|[^ -~])*\w)', re.I)
398 LICENSE_MENTION_RE = re.compile(rb'.*(?:' + rb'|'.join([
399 rb'Apache License',
400 rb'General Public License',
401 ]) + rb')', re.I)
/openthread-latest/third_party/mbedtls/repo/scripts/mbedtls_dev/
Dmacro_collector.py331 _nonascii_re = re.compile(rb'[^\x00-\x7f]+')
332 _continued_line_re = re.compile(rb'\\\r?\n\Z')
340 line = re.sub(self._nonascii_re, rb'', line).decode('ascii')
483 _nonascii_re = re.compile(rb'[^\x00-\x7f]+') #type: Pattern
488 line = re.sub(self._nonascii_re, rb'', line).decode('ascii')
/openthread-latest/third_party/mbedtls/repo/tests/suites/
Dtest_suite_lmots.data31 # with open('tests/data_files/lms_hsslms_sha256_m32_h5_lmots_sha256_n32_w8_prv', 'rb') as private_k…
56 # with open('tests/data_files/lms_hsslms_sha256_m32_h5_lmots_sha256_n32_w8_prv', 'rb') as private_k…
79 # with open('tests/data_files/lms_hsslms_sha256_m32_h5_lmots_sha256_n32_w8_prv', 'rb') as private_k…
Dtest_suite_psa_its.function257 stream = fopen(filename, "rb+");
279 stream = fopen(filename, "rb");
Dtest_suite_pkcs7.function127 file = fopen(filetobesigned, "rb");
Dtest_suite_lms.data152 # with open('tests/data_files/lms_hsslms_sha256_m32_h5_lmots_sha256_n32_w8_prv', 'rb') as private_k…
175 # with open('tests/data_files/lms_hsslms_sha256_m32_h5_lmots_sha256_n32_w8_prv', 'rb') as private_k…
Dtest_suite_entropy.function122 if ((f = fopen(MBEDTLS_PLATFORM_STD_NV_SEED_FILE, "rb")) == NULL) {
/openthread-latest/third_party/mbedtls/repo/library/
Daes.c1168 uint64_t a, b, ra, rb; in mbedtls_gf128mul_x_ble() local
1174 rb = (a >> 63) | (b << 1); in mbedtls_gf128mul_x_ble()
1177 MBEDTLS_PUT_UINT64_LE(rb, r, 8); in mbedtls_gf128mul_x_ble()