/mbedtls-3.6.0/scripts/mbedtls_dev/ |
D | crypto_knowledge.py | 26 short = re.sub(r'\bPSA_(?:ALG|DH_FAMILY|ECC_FAMILY|KEY_[A-Z]+)_', r'', short) 27 short = re.sub(r' +', r'', short) 29 short = re.sub(r'PUBLIC_KEY\b', r'PUB', short) 30 short = re.sub(r'KEY_PAIR\b', r'PAIR', short) 31 short = re.sub(r'\bBRAINPOOL_P', r'BP', short) 32 short = re.sub(r'\bMONTGOMERY\b', r'MGM', short) 33 short = re.sub(r'AEAD_WITH_SHORTENED_TAG\b', r'AEAD_SHORT', short) 34 short = re.sub(r'\bDETERMINISTIC_', r'DET_', short) 35 short = re.sub(r'\bKEY_AGREEMENT\b', r'KA', short) 36 short = re.sub(r'_PSK_TO_MS\b', r'_PSK2MS', short) [all …]
|
D | psa_information.py | 58 return re.sub(r'_FAMILY_(.*)', r'_\1_' + str(bits), dep) 136 ret_list.append(re.sub(r'KEY_PAIR', r'KEY_PAIR_BASIC', dep)) 137 ret_list.append(re.sub(r'KEY_PAIR', r'KEY_PAIR_IMPORT', dep)) 138 ret_list.append(re.sub(r'KEY_PAIR', r'KEY_PAIR_EXPORT', dep)) 140 ret_list.append(re.sub(r'KEY_PAIR', r'KEY_PAIR_GENERATE', dep))
|
D | asymmetric_key_data.py | 27 private = 'PSA_KEY_TYPE_' + re.sub(r'(\(|\Z)', r'_KEY_PAIR\1', typ, 1) 28 public = 'PSA_KEY_TYPE_' + re.sub(r'(\(|\Z)', r'_PUBLIC_KEY\1', typ, 1)
|
D | macro_collector.py | 292 expansion = re.sub(r'/\*.*?\*/|//.*', r' ', expansion) 340 line = re.sub(self._nonascii_re, rb'', line).decode('ascii') 488 line = re.sub(self._nonascii_re, rb'', line).decode('ascii') 511 return re.sub(r',', r', ', re.sub(r' +', r'', argument))
|
D | test_data_generation.py | 218 options.targets = [os.path.basename(re.sub(r'\.data\Z', r'', target))
|
D | psa_storage.py | 66 return re.sub(r'\s+', r'', string)
|
/mbedtls-3.6.0/tests/scripts/ |
D | translate_ciphers.py | 89 s_cipher = re.sub(r'\ATLS-', '+', s_cipher) 101 s_cipher = re.sub(r"GCM-SHA\d\d\d", "GCM", s_cipher) 121 s_cipher = re.sub(r'^TLS-', '', s_cipher) 130 s_cipher = re.sub(r'^RSA-', r'', s_cipher) 138 s_cipher = re.sub(r'(?<!DES-)CBC-', r'', s_cipher)
|
D | generate_test_code.py | 482 arg = re.sub(r'\s*\*\s*', r'*', arg) 483 arg = re.sub(r'\s+', r' ', arg) 610 re.sub(r'.', r' ', line[opening.start(0):pos]) + 613 return re.sub(r' +(\n|\Z)', r'\1', line) 743 out = re.sub(r'(\\.)|' + split_char,
|
D | check_test_cases.py | 155 base_name = re.sub(r'\.[^.]*$', '', re.sub(r'.*/', '', file_name))
|
D | test_psa_constant_names.py | 66 return re.sub(NORMALIZE_STRIP_RE, '', expr)
|
D | generate_psa_tests.py | 259 short_deps = [re.sub(r'PSA_WANT_ALG_', r'', dep) 527 short = re.sub(r'PSA_KEY_LIFETIME_FROM_PERSISTENCE_AND_LOCATION',
|
D | check_names.py | 530 line = re.sub(self.IGNORED_CHUNK_REGEX,
|
/mbedtls-3.6.0/docs/architecture/testing/ |
D | driver-interface-test-strategy.md | 83 … a secure element involves multiple storage modifications (M<sub>1</sub>, ..., M<sub>n</sub>). If … 85 …otential interruption point (before M<sub>1</sub>, between M<sub>1</sub> and M<sub>2</sub>, ..., a…
|
/mbedtls-3.6.0/scripts/ |
D | min_requirements.py | 36 split_req[0] = re.sub(r'>=|~=', r'==', split_req[0]) 50 line = re.sub(r'(\A|\s+)#.*', r'', line)
|
D | generate_ssl_debug_helpers.py | 33 return pattern.sub(replacer, string)
|
D | assemble_changelog.py | 139 return re.sub(r'\n.*', version_title, re.DOTALL)
|
D | abi_check.py | 281 line = re.sub(r'\s+', r'', line)
|
/mbedtls-3.6.0/tests/ |
D | CMakeLists.txt | 138 # CMake generates sub-makefiles for each target and calls them in subprocesses. 139 # Without this command, cmake will generate rules in each sub-makefile. As a result, 141 # With this line, only 4 sub-makefiles include the above command, that reduces
|
/mbedtls-3.6.0/docs/ |
D | driver-only-builds.md | 62 in the "Limitations" sub-sections of the sections dedicated to each family 132 still be included in the build, see limitations sub-section below. 135 - `MBEDTLS_ECP_C` is fully removed (see limitation sub-section below), and 147 limitation sub-section below).
|
D | psa-driver-example-and-guide.md | 22 …r). For each cryptographic operation that supports driver acceleration (or sub-part of a multi-par… 50 …eps 4, 5, and 6 must be done *for each single-part operation* or *for each sub-part of a multi-par…
|
/mbedtls-3.6.0/library/ |
D | ecp.c | 311 #define ECP_RS_ENTER(sub) (void) rs_ctx; argument 312 #define ECP_RS_LEAVE(sub) (void) rs_ctx; argument
|
/mbedtls-3.6.0/docs/architecture/psa-migration/ |
D | psa-limitations.md | 148 following sub-sections study whether and how this matters in practice.
|
/mbedtls-3.6.0/ |
D | ChangeLog | 854 * cmake now detects if it is being built as a sub-project, and in that case
|