Home
last modified time | relevance | path

Searched +full:python3 +full:- +full:github (Results 1 – 8 of 8) sorted by relevance

/optee_os/.github/workflows/
H A Dnotify.yml2 # for pull requests against the OP-TEE OS main repository in a secure way.
4 # (issues: write) using the default short-lived GITHUB_TOKEN. Due to this
15 pull-requests: write
17 notify-maintainers:
18 runs-on: ubuntu-latest
20 - name: Checkout base branch
22 - name: Install python3-github
24 sudo apt-get update
25 sudo apt-get install python3-github
26 - name: Compute maintainers
[all …]
/optee_os/scripts/
H A Dnotify_maintainers.py1 #!/usr/bin/env python3
2 # SPDX-License-Identifier: BSD-2-Clause
14 # REPO: the name of the target repository (normally: OP-TEE/optee_os)
26 from github import Github
27 from github import Auth
31 """Parse get_maintainer.py output and return GitHub handles to notify.
42 if handle_start == -1 or handle_end == -1:
49 if paren_start != -1 and paren_end != -1:
75 handles_to_mention = handles - the_rest_handles
80 """Run get_maintainer.py with -g PR_NUMBER and parse handles."""
[all …]
H A Dupdate_changelog.py1 #!/usr/bin/env python3
2 # SPDX-License-Identifier: BSD-2-Clause
16 ' --changelog-file CHANGELOG.md'
17 ' --release-version 3.7.0'
18 ' --previous-release-version 3.6.0'
19 ' --release-date 2019-10-11')
21 parser.add_argument('--changelog-file', action='store', required=False,
25 parser.add_argument('--release-date', action='store', required=True,
26 help='The release date (yyyy-mm-dd).')
28 parser.add_argument('--release-version', action='store', required=True,
[all …]
H A Dget_maintainer.py1 #!/usr/bin/env python3
5 # SPDX-License-Identifier: BSD-2-Clause
17 DIFF_GIT_RE = re.compile(r'^diff --git a/(?P<path>.*) ')
18 REVIEWED_RE = re.compile(r'^Reviewed-by: (?P<approver>.*>)')
19 ACKED_RE = re.compile(r'^Acked-by: (?P<approver>.*>)')
20 PATCH_START = re.compile(r'^From [0-9a-f]{40}')
28 '(With -m) Check if a patch or pull '
31 parser.add_argument('-m', '--merge-check', action='store_true',
32 help='use Reviewed-by: and Acked-by: tags found in '
35 parser.add_argument('-p', '--show-paths', action='store_true',
[all …]
/optee_os/lib/libmbedtls/mbedtls/
H A DREADME.md4 …s cryptographic primitives (including the [PSA Cryptography API](#psa-cryptography-api)), X.509 ce…
7 -------------
9 … more programmatic way using the Python 3 script `scripts/config.py` (use `--help` for usage instr…
13 We provide some non-standard configurations focused on specific use cases in the `configs/` directo…
16 -------------
18 The main Mbed TLS documentation is available via [ReadTheDocs](https://mbed-tls.readthedocs.io/).
20 …entation for the PSA Cryptography API is available [on GitHub](https://arm-software.github.io/psa-
22 To generate a local copy of the library documentation in HTML format, tailored to your compile-time…
31 ---------
35 - GNU Make
[all …]
H A DChangeLog3 = Mbed TLS 3.6.5 branch released 2025-10-15
13 mbedtls_cipher_finish(), but makes it easier to process invalid-padding
17 * Fix a timing side channel in CBC-PKCS7 decryption that could
19 some plaintexts through a timing-based padding oracle attack.
20 Credits to Beat Heeb from Oberon microsystems AG. CVE-2025-59438
21 * Fix a local timing side-channel in modular inversion and GCD that was
24 private key. This can be exploited on some Arm-v9 CPUs by an unprivileged
25 attacker running code on the same core (SSBleed), or when Trustzone-M is
26 used, by the non-secure side abusing timer interrupts (M-Step), and
29 Carlson (National University of Singapore); M-Step: Cristiano Rodrigues
[all …]
/optee_os/core/arch/arm/
H A Darm.mk3 arch-bits-core := 64
5 arch-bits-core := 32
7 CROSS_COMPILE_core := $(CROSS_COMPILE$(arch-bits-core))
11 # Defines the cc-option macro using the compiler set for the core module
12 include mk/cc-option.mk
37 CFG_KERN_LINKER_FORMAT ?= elf64-littleaarch64
49 CFG_KERN_LINKER_FORMAT ?= elf32-littlear
[all...]
/optee_os/scripts/kconfig/kconfiglib/
H A Dmenuconfig.py1 #!/usr/bin/env python3
3 # Copyright (c) 2018-2019, Nordic Semiconductor ASA and Ulf Magnusson
4 # SPDX-License-Identifier: ISC
10 A curses-based Python 2/3 menuconfig implementation. The interface should feel
19 Ctrl-D/U: Page Down/Page Up
27 character in it in the current menu isn't supported. A jump-to feature for
33 F: Toggle show-help mode, which shows the help text of the currently selected
37 C: Toggle show-name mode, which shows the symbol name before each symbol menu
40 A: Toggle show-all mode, which shows all items, including currently invisible
52 When run in standalone mode, the top-level Kconfig file to load can be passed
[all …]