Searched full:python (Results 1 – 25 of 39) sorted by relevance
12
/mbedtls-3.5.0/tests/suites/ |
D | test_suite_pkcs5.data | 21 PBKDF2 Python hashlib Test Vector #1 (SHA224) 25 PBKDF2 Python hashlib Test Vector #2 (SHA224) 29 PBKDF2 Python hashlib Test Vector #3 (SHA224) 33 PBKDF2 Python hashlib Test Vector #5 (SHA224) 37 PBKDF2 Python hashlib Test Vector #6 (SHA224) 49 PBKDF2 Python hashlib Test Vector #1 (SHA256) 53 PBKDF2 Python hashlib Test Vector #2 (SHA256) 57 PBKDF2 Python hashlib Test Vector #3 (SHA256) 61 PBKDF2 Python hashlib Test Vector #5 (SHA256) 65 PBKDF2 Python hashlib Test Vector #6 (SHA256) [all …]
|
D | test_suite_lmots.data | 17 # This test uses data from https://github.com/pmvr/python-hsslms due to the 42 # This test uses data from https://github.com/pmvr/python-hsslms due to the 67 # This test uses data from https://github.com/pmvr/python-hsslms due to the
|
D | test_suite_lms.data | 141 # This test uses data from https://github.com/pmvr/python-hsslms due to the 164 # This test uses data from https://github.com/pmvr/python-hsslms due to the
|
/mbedtls-3.5.0/scripts/ |
D | make_generated_files.bat | 3 @rem Perl and Python 3 must be on the PATH. 6 python scripts\generate_driver_wrappers.py || exit /b 1 10 python scripts\generate_ssl_debug_helpers.py || exit /b 1 12 python scripts\generate_psa_constants.py || exit /b 1 13 python tests\scripts\generate_bignum_tests.py || exit /b 1 14 python tests\scripts\generate_ecp_tests.py || exit /b 1 15 python tests\scripts\generate_psa_tests.py || exit /b 1
|
D | driver.requirements.txt | 1 # Python package requirements for driver implementers. 11 # Note that Jinja 3.0 drops support for Python 3.5, so we need to support 12 # Jinja 2.x as long as we're still using Python 3.5 anywhere. 13 # Jinja 2.10.1 doesn't support Python 3.10+
|
D | config.pl | 20 $py =~ s/\.pl$/.py/ or die "Unable to determine the name of the Python script"; 22 print STDERR "$0: python3: $!. Trying python instead.\n"; 23 exec 'python', $py, @ARGV; 24 print STDERR "$0: python: $!\n";
|
D | min_requirements.py | 2 """Install all the required Python packages, with the minimum Python version. 38 """Collect and massage Python requirements.""" 120 help="Install to the Python user install directory"
|
D | ci.requirements.txt | 1 # Python package requirements for Mbed TLS testing. 7 # 2.4.4 is the version in Ubuntu 20.04. It supports Python >=3.5.
|
D | maintainer.requirements.txt | 1 # Python packages that are only useful to Mbed TLS maintainers.
|
D | basic.requirements.txt | 1 # Python modules required to build Mbed TLS in ordinary conditions.
|
D | output_env.sh | 123 print_version "python" "--version" "" "head -n 1"
|
/mbedtls-3.5.0/ |
D | .travis.yml | 1 # Declare python as our language. This way we get our chosen Python version, 3 language: python 4 python: 3.5 65 # The language 'python' is currently unsupported on the 70 - choco install python --version=3.5.4 74 - PYTHON=python.exe 77 - type python; python --version 141 - $PYTHON scripts/min_requirements.py
|
D | README.md | 11 …his file can be edited manually, or in a more programmatic way using the Python 3 script `scripts/… 51 * Python 3.6 to generate the test code, and to generate sample programs in the development branch. 64 * Python 3 and some Python packages, for some library source files, sample programs and test data. … 68 …Depending on your Python installation, you may need to invoke `python` instead of `python3`. To in… 95 The tests need Python to be built and Perl to be run. If you don't have one of them installed, you … 125 The test suites need Python to be built and Perl to be executed. If you don't have one of these ins… 226 …ograms. The files in tests are not generated and compiled, as these need Python and perl environme… 239 Mbed TLS includes an elaborate test suite in `tests/` that initially requires Python to generate th…
|
D | .gitignore | 37 # Python build artifacts:
|
/mbedtls-3.5.0/tests/scripts/ |
D | check-python-files.sh | 18 # Purpose: check Python files for potential programming errors or maintenance 26 PYTHON=python3 28 PYTHON=python 32 $PYTHON - "$2" <<EOF 70 $PYTHON -m pylint scripts/mbedtls_dev/*.py scripts/*.py tests/scripts/*.py || { 77 $PYTHON -m mypy scripts/*.py tests/scripts/*.py ||
|
D | scripts_path.py | 1 """Add our Python library directory to the module search path.
|
/mbedtls-3.5.0/tests/ |
D | Makefile | 63 PYTHON ?= python macro 65 PYTHON ?= $(shell if type python3 >/dev/null 2>/dev/null; then echo python3; else echo python; fi) macro 70 $(PYTHON) scripts/generate_bignum_tests.py --list || \ 74 $(error "$(PYTHON) scripts/generate_bignum_tests.py --list" failed) 77 $(PYTHON) scripts/generate_ecp_tests.py --list || \ 81 $(error "$(PYTHON) scripts/generate_ecp_tests.py --list" failed) 84 $(PYTHON) scripts/generate_psa_tests.py --list || \ 88 $(error "$(PYTHON) scripts/generate_psa_tests.py --list" failed) 110 $(PYTHON) scripts/generate_bignum_tests.py 120 $(PYTHON) scripts/generate_ecp_tests.py [all …]
|
/mbedtls-3.5.0/programs/fuzz/ |
D | README.md | 19 python infra/helper.py build_image mbedtls 20 python infra/helper.py build_fuzzers --sanitizer address mbedtls 21 python infra/helper.py run_fuzzer mbedtls fuzz_client 53 * Run a dummy python script to output either client or server corpus file like `python dummy.py tes…
|
/mbedtls-3.5.0/library/ |
D | Makefile | 28 PYTHON ?= python macro 30 PYTHON ?= $(shell if type python3 >/dev/null 2>/dev/null; then echo python3; else echo python; fi) macro 326 $(PYTHON) ../scripts/generate_ssl_debug_helpers.py --mbedtls-root .. . 344 $(PYTHON) ../scripts/generate_driver_wrappers.py
|
/mbedtls-3.5.0/scripts/mbedtls_dev/ |
D | bignum_data.py | 138 Requires pycryptodomex for getPrime and isPrime and python 3.9 or later for 142 # We want reproducibility across python versions
|
D | typing_util.py | 24 # available on a default Python installation. Therefore, try loading
|
D | bignum_common.py | 31 Equivalent to pow(a, -1, n) in Python 3.8+. Implementation is equivalent 97 defined in the python source. "arch_split" pads the values with
|
D | c_build_helper.py | 39 Return ```(c_file, c_name, exe_name)``` where ``c_file`` is a Python
|
/mbedtls-3.5.0/programs/ |
D | Makefile | 59 PYTHON ?= python macro 61 PYTHON ?= $(shell if type python3 >/dev/null 2>/dev/null; then echo python3; else echo python; fi) macro 185 $(PYTHON) ../scripts/generate_psa_constants.py
|
/mbedtls-3.5.0/docs/proposed/ |
D | psa-driver-wrappers-codegen-migration-guide.md | 24 The Driver Wrapper auto generation project is designed to use a python templating library ( Jinja2 …
|
12