Searched +full:clang +full:- +full:10 (Results 1 – 11 of 11) sorted by relevance
33 branches-ignore:34 - 'dependabot/**'37 - 'main'40 …group: ${{ github.workflow }}-${{ github.event.pull_request.number || (github.repository == 'opent…41 cancel-in-progress: true49 runs-on: ubuntu-22.0451 - name: Harden Runner52 uses: step-security/harden-runner@8ca2b8b2ece13480cda6dacd3511b49857a23c09 # v2.5.154 egress-policy: audit # TODO: change to 'egress-policy: block' after couple of runs56 - uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0[all …]
33 branches-ignore:34 - 'dependabot/**'37 - 'main'40 …group: ${{ github.workflow }}-${{ github.event.pull_request.number || (github.repository == 'opent…41 cancel-in-progress: true43 permissions: # added using https://github.com/step-security/secure-workflows48 thread-1-3:49 name: thread-1-3-${{ matrix.compiler.c }}-${{ matrix.arch }}50 runs-on: ubuntu-20.0452 CFLAGS: -${{ matrix.arch }}[all …]
33 branches-ignore:34 - 'dependabot/**'37 - 'main'40 …group: ${{ github.workflow }}-${{ github.event.pull_request.number || (github.repository == 'opent…41 cancel-in-progress: true48 toranj-ncp:49 name: toranj-ncp-${{ matrix.TORANJ_RADIO }}50 runs-on: ubuntu-20.0452 fail-fast: false61 - name: Harden Runner[all …]
6 # SPDX-License-Identifier: Apache-2.012 # http://www.apache.org/licenses/LICENSE-2.027 # -------32 # ---------------44 # * Basic Unix tools (Windows users note: a Unix-style find must be before49 # * GCC and Clang (recent enough for using ASan with gcc and MemSan with clang, or valgrind)51 # * arm-gcc and mingw-gcc52 # * ArmCC 5 and ArmCC 6, unless invoked with --no-armcc62 # The behavior on an error depends on whether --keep-going (alias -k)64 # * Without --keep-going: the script stops on the first error without[all …]
4 # -------9 # SPDX-License-Identifier: Apache-2.015 # http://www.apache.org/licenses/LICENSE-2.030 RUN apt-get update \31 && apt-get -y install software-properties-common \32 && rm -rf /var/lib/apt/lists34 RUN add-apt-repository -y ppa:team-gcc-arm-embedded/ppa36 RUN apt-get update \37 && apt-get -y install \39 build-essential \[all …]
1 #!/usr/bin/expect -f46 -re $success {49 -re $failure {61 set timeout 1062 expect -re "\[\r\n \]($line)(?=\[\r\n>\])"76 set radio_url "spinel+hdlc+uart://$::env(OT_SIMULATION_APPS)/ncp/ot-rcp?forkpty-arg=$id"81 if {[info exists ::env(CC)] && $::env(CC) == "clang"} {84 set gcov_prefix "ot-run/$argv0/ot-gcda.$id"87 switch -regexp ${type} {88 {rcp|rcp-cli} {[all …]
3 = mbed TLS 2.28.0 branch released 2021-12-1711 * Sign-magnitude and one's complement representations for signed integers are16 which allowed SHA-1 in the default TLS configuration for certificate18 with SHA-1 certificates. SHA-1 is considered a weak message digest and27 supported on GCC-like compilers and on MSVC and can be configured through44 man-in-the-middle to inject fake ciphertext into a DTLS connection.49 * Fix a double-free that happened after mbedtls_ssl_set_session() or58 The check was accidentally not performed when cross-compiling for Windows68 (at least) Clang 12.70 * Fix mbedtls_cipher_crypt: AES-ECB when MBEDTLS_USE_PSA_CRYPTO is enabled.[all …]
9 * SPDX-License-Identifier: Apache-2.015 * http://www.apache.org/licenses/LICENSE-2.0135 /* Implementation of the check-return facility.153 /** Critical-failure function158 * and will result in a compile-time warning if #MBEDTLS_CHECK_RETURN164 * there are near-unavoidable circumstances under which the function167 * return-check-critical.171 /** Ordinary-failure function175 * applications. Omitting the check will result in a compile-time warning if177 * #MBEDTLS_CHECK_RETURN_WARNING is enabled in the compile-time configuration.[all …]
4 * \brief Multi-precision integer library8 * SPDX-License-Identifier: Apache-2.014 * http://www.apache.org/licenses/LICENSE-2.028 * . IA-32 (386+) . AMD64 / EM64T29 * . IA-32 (SSE2) . Motorola 6800030 * . PowerPC, 32-bit . MicroBlaze31 * . PowerPC, 64-bit . TriCore67 #else /* 64-bits */93 /* armcc5 --gnu defines __GNUC__ but doesn't support GNU's extended asm */98 * Disable use of the i386 assembly code below if option -O0, to disable all[all …]
38 * \return 1 if the buffer is all-bits-zero.52 /* Write the ASN.1 INTEGER with the value 2^(bits-1)+x backwards from *p. */62 if( bits <= 8 && x >= 1 << ( bits - 1 ) )64 if( *p < start || *p - start < (ptrdiff_t) len )66 *p -= len;67 ( *p )[len-1] = x;91 * modulus INTEGER, -- n92 * publicExponent INTEGER, -- e93 * privateExponent INTEGER, -- d94 * prime1 INTEGER, -- p[all …]
25 * [Getting the Mbed Crypto library](#getting-the-mbed-crypto-library)26 * [Building the Mbed Crypto library](#building-the-mbed-crypto-library)27 * [Using the Mbed Crypto library](#using-the-mbed-crypto-library)28 * [Importing a key](#importing-a-key)29 * [Signing a message using RSA](#signing-a-message-using-RSA)30 * [Encrypting or decrypting using symmetric ciphers](#encrypting-or-decrypting-using-symmetric-ciph…31 * [Hashing a message](#hashing-a-message)32 * [Deriving a new key from an existing key](#deriving-a-new-key-from-an-existing-key)33 * [Generating a random value](#generating-a-random-value)34 …ting and encrypting or decrypting a message](#authenticating-and-encrypting-or-decrypting-a-messag…[all …]