/mbedtls-3.5.0/scripts/mbedtls_dev/ |
D | crypto_knowledge.py | 37 short = re.sub(r'\bPSA_(?:ALG|ECC_FAMILY|KEY_[A-Z]+)_', r'', short) 38 short = re.sub(r' +', r'', short) 40 short = re.sub(r'PUBLIC_KEY\b', r'PUB', short) 41 short = re.sub(r'KEY_PAIR\b', r'PAIR', short) 42 short = re.sub(r'\bBRAINPOOL_P', r'BP', short) 43 short = re.sub(r'\bMONTGOMERY\b', r'MGM', short) 44 short = re.sub(r'AEAD_WITH_SHORTENED_TAG\b', r'AEAD_SHORT', short) 45 short = re.sub(r'\bDETERMINISTIC_', r'DET_', short) 46 short = re.sub(r'\bKEY_AGREEMENT\b', r'KA', short) 47 short = re.sub(r'_PSK_TO_MS\b', r'_PSK2MS', short) [all …]
|
D | asymmetric_key_data.py | 38 private = 'PSA_KEY_TYPE_' + re.sub(r'(\(|\Z)', r'_KEY_PAIR\1', typ, 1) 39 public = 'PSA_KEY_TYPE_' + re.sub(r'(\(|\Z)', r'_PUBLIC_KEY\1', typ, 1)
|
D | macro_collector.py | 303 expansion = re.sub(r'/\*.*?\*/|//.*', r' ', expansion) 351 line = re.sub(self._nonascii_re, rb'', line).decode('ascii') 499 line = re.sub(self._nonascii_re, rb'', line).decode('ascii') 522 return re.sub(r',', r', ', re.sub(r' +', r'', argument))
|
D | test_data_generation.py | 229 options.targets = [os.path.basename(re.sub(r'\.data\Z', r'', target))
|
D | psa_storage.py | 73 return re.sub(r'\s+', r'', string)
|
/mbedtls-3.5.0/tests/scripts/ |
D | translate_ciphers.py | 101 s_cipher = re.sub(r'\ATLS-', '+', s_cipher) 113 s_cipher = re.sub(r"GCM-SHA\d\d\d", "GCM", s_cipher) 133 s_cipher = re.sub(r'^TLS-', '', s_cipher) 142 s_cipher = re.sub(r'^RSA-', r'', s_cipher) 150 s_cipher = re.sub(r'(?<!DES-)CBC-', r'', s_cipher)
|
D | check_test_cases.py | 150 base_name = re.sub(r'\.[^.]*$', '', re.sub(r'.*/', '', file_name))
|
D | generate_test_code.py | 562 re.sub(r'.', r' ', line[opening.start(0):pos]) + 565 return re.sub(r' +(\n|\Z)', r'\1', line) 690 out = re.sub(r'(\\.)|' + split_char,
|
D | test_psa_constant_names.py | 78 return re.sub(NORMALIZE_STRIP_RE, '', expr)
|
D | generate_psa_tests.py | 50 return re.sub(r'_FAMILY_(.*)', r'_\1_' + str(bits), dep) 338 short_deps = [re.sub(r'PSA_WANT_ALG_', r'', dep) 603 short = re.sub(r'PSA_KEY_LIFETIME_FROM_PERSISTENCE_AND_LOCATION',
|
D | check_names.py | 542 line = re.sub(self.IGNORED_CHUNK_REGEX,
|
/mbedtls-3.5.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.5.0/scripts/ |
D | min_requirements.py | 48 split_req[0] = re.sub(r'>=|~=', r'==', split_req[0]) 62 line = re.sub(r'(\A|\s+)#.*', r'', line)
|
D | generate_ssl_debug_helpers.py | 45 return pattern.sub(replacer, string)
|
D | assemble_changelog.py | 151 return re.sub(r'\n.*', version_title, re.DOTALL)
|
D | abi_check.py | 293 line = re.sub(r'\s+', r'', line)
|
/mbedtls-3.5.0/tests/ |
D | CMakeLists.txt | 136 # CMake generates sub-makefiles for each target and calls them in subprocesses. 137 # Without this command, cmake will generate rules in each sub-makefile. As a result, 139 # With this line, only 4 sub-makefiles include the above command, that reduces
|
/mbedtls-3.5.0/library/ |
D | constant_time.c | 190 const size_t sub = x - y; in mbedtls_ct_size_mask_lt() local 193 const size_t sub1 = sub >> (sizeof(sub) * 8 - 1); in mbedtls_ct_size_mask_lt()
|
D | ecp.c | 318 #define ECP_RS_ENTER(sub) (void) rs_ctx; argument 319 #define ECP_RS_LEAVE(sub) (void) rs_ctx; argument
|
/mbedtls-3.5.0/docs/architecture/psa-migration/ |
D | psa-limitations.md | 140 following sub-sections study whether and how this matters in practice.
|
/mbedtls-3.5.0/ |
D | ChangeLog | 533 * cmake now detects if it is being built as a sub-project, and in that case
|