Home
last modified time | relevance | path

Searched +full:wolfssl +full:- +full:configure (Results 1 – 25 of 33) sorted by relevance

12

/external/curl/.github/workflows/
Dwolfssl.yml3 # SPDX-License-Identifier: curl
5 name: Linux wolfSSL
10 - master
11 - '*/ci'
12 paths-ignore:
13 - '**/*.md'
14 - '**/CMakeLists.txt'
15 - '.azure-pipelines.yml'
16 - '.circleci/**'
17 - '.cirrus.yml'
[all …]
Dngtcp2-linux.yml3 # SPDX-License-Identifier: curl
5 name: ngtcp2-linux
10 - master
11 - '*/ci'
12 paths-ignore:
13 - '**/*.md'
14 - '**/CMakeLists.txt'
15 - '.azure-pipelines.yml'
16 - '.circleci/**'
17 - '.cirrus.yml'
[all …]
/external/oss-fuzz/projects/wolfssl/
Dbuild.sh1 #!/bin/bash -eu
8 # http://www.apache.org/licenses/LICENSE-2.0
20--enable-static --enable-md2 --enable-md4 --enable-ripemd --enable-blake2 --enable-blake2s --enabl…
23 WOLFCRYPT_CONFIGURE_PARAMS="$WOLFCRYPT_CONFIGURE_PARAMS --disable-asm"
32 cp -R boost/ /usr/include/
34 export CXXFLAGS="$CXXFLAGS -DCRYPTOFUZZ_BOTAN_IS_ORACLE"
39 # Configure Cryptofuzz
41 sed -i 's/kNegativeIntegers = false/kNegativeIntegers = true/g' config.h
42 cp -R $SRC/cryptofuzz/ $SRC/cryptofuzz-openssl-api/
43 cd $SRC/cryptofuzz-openssl-api/
[all …]
/external/curl/docs/
DECH.md1 <!--
4 SPDX-License-Identifier: curl
5 -->
7 # Building curl with HTTPS-RR and ECH support
12 WolfSSL or boringssl as the TLS provider, depending on how you build curl.
16 This should however provide enough of a proof-of-concept to prompt an informed
22 To build our ECH-enabled OpenSSL fork:
26 git clone https://github.com/defo-project/openssl
28 ./config --libdir=lib --prefix=$HOME/code/openssl-local-inst
30 make -j8
[all …]
DHTTP3.md1 <!--
4 SPDX-License-Identifier: curl
5 -->
11 [HTTP/3 Explained](https://http3-explained.haxx.se/en/) - the online free
14 [quicwg.org](https://quicwg.org/) - home of the official protocol drafts
22 [quiche](https://github.com/cloudflare/quiche) - **EXPERIMENTAL**
24 [OpenSSL 3.2+ QUIC](https://github.com/openssl/openssl) - **EXPERIMENTAL**
26 [msh3](https://github.com/nibanks/msh3) (with [msquic](https://github.com/microsoft/msquic)) - **EX…
35 master branch using pull-requests, just like ordinary changes.
39 - the used QUIC library needs to consider itself non-beta
[all …]
DINSTALL.md1 <!--
4 SPDX-License-Identifier: curl
5 -->
22 ./bootstrap-vcpkg.sh
33 the `GIT-INFO.md` file in the root directory for specific instructions on how
41 ./configure --with-openssl [--with-gnutls --with-wolfssl]
46 (Adjust the configure line accordingly to use the TLS library you want.)
50 Get a full listing of all available configure options by invoking it like:
52 ./configure --help
55 specify that when running configure:
[all …]
DINSTALL-CMAKE.md1 <!--
4 SPDX-License-Identifier: curl
5 -->
9 This document describes how to configure, build and install curl and libcurl
23 - Builds libcurl without large file support
24 - Does not support all SSL libraries (only OpenSSL, Schannel, Secure
25 Transport, and mbedTLS, WolfSSL)
26 - Does not allow different resolver backends (no c-ares build support)
27 - No RTMP support built
28 - Does not allow build curl and libcurl debug enabled
[all …]
DEXPERIMENTAL.md1 <!--
4 SPDX-License-Identifier: curl
5 -->
17 2. You must enable the feature when invoking configure as otherwise curl is
41 - HTTP/1 and HTTP/2 support, including multiplexing
43 ### HTTP/3 support (non-ngtcp2 backends)
47 - The used libraries should be considered out-of-beta with a reasonable
50 - Using HTTP/3 with the given build should perform without risking busy-loops
56 - a reasonable expectation of a stable API going forward.
62 - feedback from users saying that the API works for their specific use cases
[all …]
DHISTORY.md1 <!--
4 SPDX-License-Identifier: curl
5 -->
12 currency-exchange calculations available to Internet Relay Chat (IRC)
17 ----
22 Daniel extended this existing command-line open-source tool. After a few minor
28 ----
37 was released in August 1997. The http-only days were already passed.
47 ----
73 November: configure script and reported successful compiles on several
[all …]
/external/curl/projects/
Dwolfssl_options.h21 * SPDX-License-Identifier: curl
25 By default wolfSSL has a very conservative configuration that can result in
28 build-wolfssl will copy to the wolfSSL include directories and will result in
31 These are the configure options that were used to build wolfSSL v5.1.1 in
35 -Wno-attributes \
36 -Wno-unused-but-set-variable \
37 -DFP_MAX_BITS=16384 \
38 -DHAVE_SECRET_CALLBACK \
39 -DTFM_TIMING_RESISTANT \
40 -DUSE_WOLF_STRTOK \
[all …]
Dbuild-wolfssl.bat23 rem * SPDX-License-Identifier: curl
36 set DEFAULT_START_DIR=..\..\wolfssl
44 rem Visual Studio was x86-only prior to 14.3
129 ) else if /i "%~1" == "-?" (
131 ) else if /i "%~1" == "-h" (
133 ) else if /i "%~1" == "-help" (
161 :configure label
203 rem Perform 64-bit Debug Build
214 rem Perform 64-bit Release Build
232 rem Perform 32-bit Debug Build
[all …]
/external/curl/.circleci/
Dconfig.yml21 # SPDX-License-Identifier: curl
28 # See https://circleci.com/docs/configuration-reference/#macos-execution-environment
30 …ion of CircleCI pipeline process engine. See: https://circleci.com/docs/2.0/configuration-reference
34 configure:
36 - run:
38 autoreconf -fi
39 … ./configure --enable-warnings --enable-werror --with-openssl || { tail -1000 config.log; false; }
41 configure-openssl-no-verbose:
43 - run:
45 autoreconf -fi
[all …]
/external/oss-fuzz/projects/wolfmqtt/
Dbuild.sh1 #!/bin/bash -eu
8 # http://www.apache.org/licenses/LICENSE-2.0
18 # Build wolfSSL (dependency of wolfMQTT)
19 cd $SRC/wolfssl/
20 autoreconf -ivf
23 ./configure --enable-static --disable-crypttests --disable-examples --disable-asm
24 elif [[ $CFLAGS = *-m32* ]]
26 ./configure --enable-static --disable-crypttests --disable-examples --disable-fastmath
28 ./configure --enable-static --disable-crypttests --disable-examples
30 make -j$(nproc)
[all …]
/external/curl/m4/
Dcurl-wolfssl.m421 # SPDX-License-Identifier: curl
26 dnl ----------------------------------------------------
27 dnl check for wolfSSL
28 dnl ----------------------------------------------------
51 dnl try pkg-config magic
52 CURL_CHECK_PKGCONFIG(wolfssl, [$wolfpkg])
60 $PKGCONFIG --libs-only-l wolfssl`
62 $PKGCONFIG --libs-only-L wolfssl`
64 $PKGCONFIG --cflags-only-I wolfssl`
66 $PKGCONFIG --modversion wolfssl`
[all …]
/external/libwebsockets/READMEs/
DREADME.build.md8 ./bootstrap-vcpkg.sh
16 CMake is a multi-platform build tool that can generate build files for many
19 CMake also allows/recommends you to do "out of source"-builds, that is,
25 with SSL support (for OpenSSL/wolfSSL/BoringSSL):
27 - Windows (Visual Studio)
28 - Windows (MinGW)
29 - Linux (x86 and ARM)
30 - OSX
31 - NetBSD
71 as --prefix= with autotools. It defaults to /usr/local.
[all …]
/external/ms-tpm-20-ref/
DREADME.md3 …[Build Status](https://travis-ci.org/Microsoft/ms-tpm-20-ref.svg?branch=master)](https://travis-ci…
5 …ion of the [TPM 2.0 Specification](https://trustedcomputinggroup.org/tpm-library-specification). T…
9- C#/.Net, C++, Java, Python, JavaScript/Node.js are currently supported. The C language TSS imple…
31 ### Wolfcrypt library (wolfSSL) ###
33 …1. WolfSSL is included as a submodule. Initialize and update the submodule to fetch the project an…
38 …The current commit will point the minimum recommended version of wolfSSL. Moving to a more recent …
48 Follows the common `./bootstrap && ./configure && make` convention.
50-archive`, `pkg-config`, and sometimes `build-essential` and `automake`. Their absence is not auto…
/external/curl/lib/vtls/
Dwolfssl.c21 * SPDX-License-Identifier: curl
26 * Source file for all wolfSSL specific code for the TLS/SSL layer. No code
36 #include <wolfssl/version.h>
37 #include <wolfssl/options.h>
40 - the user's options.h generated by wolfSSL
41 - the symbols detected by curl's configure
45 /* HAVE_ALPN is wolfSSL's build time symbol for enabling ALPN in options.h. */
68 #include <wolfssl/openssl/ssl.h>
69 #include <wolfssl/ssl.h>
70 #include <wolfssl/error-ssl.h>
[all …]
/external/oss-fuzz/projects/cryptofuzz/
Dbuild.sh1 #!/bin/bash -eu
8 # http://www.apache.org/licenses/LICENSE-2.0
19 # https://github.com/google/oss-fuzz/issues/2336
23 if [[ $CFLAGS != *sanitize=memory* && $CFLAGS != *-m32* ]]
26 # It is required for building noble-bls12-381
28 tar Jxf node-v14.17.1-linux-x64.tar.xz
29 export PATH="$PATH:$SRC/node-v14.17.1-linux-x64/bin/"
33 $CC $SRC/xxd.c -o /usr/bin/xxd
36 rm -rf $SRC/cryptofuzz/modules/reference/xxHash/
37 cp -R $SRC/xxHash/ $SRC/cryptofuzz/modules/reference/
[all …]
/external/curl/
DMakefile.am21 # SPDX-License-Identifier: curl
27 ACLOCAL_AMFLAGS = -I m4
32 CMake/curl-config.cmake.in \
57 projects/build-openssl.bat \
58 projects/build-wolfssl.bat \
77 EXTRA_DIST = CHANGES COPYING maketgz Makefile.dist curl-config.in \
78 RELEASE-NOTES buildconf libcurl.pc.in $(CMAKE_DIST) $(VC_DIST) \
87 bin_SCRIPTS = curl-config
99 dist-hook:
100 rm -rf $(top_builddir)/tests/log
[all …]
DRELEASE-NOTES22 o appveyor: drop unnecessary `--clean-first` cmake option [197]
23 o appveyor: guard against crash-build with VS2008 [193]
24 o appveyor: make gcc 6 mingw64 job build-only [152]
25 o asyn-thread: fix curl_global_cleanup crash in Windows [161]
26 o asyn-thread: fix Curl_thread_create result check [162]
33 o BUG-BOUNTY.md: clarify the third party situation [210]
35 o build: remove MacOSX-Framework script [60]
37 o cf-https-connect: use timeouts as unsigned ints [143]
38 o cf-socket: don't try getting local IP without socket [188]
39 o cf-socket: remove references to l_ip, l_port [9]
[all …]
Dconfigure.ac21 # SPDX-License-Identifier: curl
24 dnl Process this file with autoconf to produce a configure script.
29 AC_INIT([curl], [-], [a suitable curl mailing list: https://curl.se/mail/])
35 dnl configure script copyright
37 This configure script may be copied, distributed and modified under the
60 # save the configure arguments
65 dnl SED is mandatory for configure process and libtool.
67 if test -z "$SED"; then
71 if test -z "$SED" || test "$SED" = "not_found"; then
77 dnl GREP is mandatory for configure process and libtool.
[all …]
Dacinclude.m421 # SPDX-License-Identifier: curl
26 dnl -------------------------------------------------
27 dnl Use the C preprocessor to find out if the given object-style symbol
31 dnl result in a set of double-quoted strings the returned expansion will
32 dnl actually be a single double-quoted string concatenating all them.
41 if test -z "$SED"; then
44 if test -z "$GREP"; then
61 if test -z "$tmp_exp" || test "$tmp_exp" = "$1"; then
65 if test -z "$tmp_exp"; then
80 dnl -------------------------------------------------
[all …]
/external/tensorflow/third_party/
Dcurl.BUILD25 "lib/asyn-thread.c",
28 "lib/setup-win32.h",
40 "lib/asyn-ares.c",
45 "lib/c-hyper.c",
46 "lib/c-hyper.h",
47 "lib/config-amigaos.h",
48 "lib/config-dos.h",
49 "lib/config-mac.h",
50 "lib/config-os400.h",
51 "lib/config-plan9.h",
[all …]
/external/federated-compute/third_party/
Dcurl.BUILD.bzl18 "lib/asyn-ares.c",
23 "lib/c-hyper.c",
24 "lib/c-hyper.h",
25 "lib/config-amigaos.h",
26 "lib/config-dos.h",
27 "lib/config-mac.h",
28 "lib/config-os400.h",
29 "lib/config-plan9.h",
30 "lib/config-riscos.h",
31 "lib/config-win32.h",
[all …]
/external/curl/.github/
Dlabeler.yml3 # SPDX-License-Identifier: curl
10 # Labels are added in two ways: the any-glob-to-all-files ones are added if all
11 # the files fit into the category, and the any-glob-to-any-file ones are added
17 # N.B. any-glob-to-all-files is misnamed; it acts like one-glob-to-all-files.
18 # Therefore, to get any-glob-to-all-files semantics, there must be a single glob
24 - all:
25 - changed-files:
26 - any-glob-to-all-files:
27- '{.github/workflows/macos.yml,lib/config-mac.h,lib/macos*,lib/vtls/sectransp*,m4/curl-sectransp.…
30 - all:
[all …]

12