Searched +full:libressl +full:- +full:portable (Results 1 – 23 of 23) sorted by relevance
| /external/oss-fuzz/projects/libressl/ |
| D | Dockerfile | 7 # http://www.apache.org/licenses/LICENSE-2.0 17 FROM gcr.io/oss-fuzz-base/base-builder 18 RUN apt-get update && apt-get install -y make cmake wget 19 RUN git clone --depth 1 https://github.com/libressl-portable/portable.git libressl 20 RUN git clone --depth 1 https://github.com/libressl-portable/fuzz.git libressl.fuzzers 21 RUN git clone --depth 1 https://github.com/guidovranken/cryptofuzz 22 RUN git clone --depth 1 https://github.com/guidovranken/cryptofuzz-corpora 24 WORKDIR libressl
|
| D | project.yaml | 1 homepage: "https://www.libressl.org/" 5 - "beck@obtuse.com" 6 - "joel.sing@gmail.com" 7 - "kinichiro.inoguchi@gmail.com" 8 - "ted.unangst@gmail.com" 9 - "miwaxe@gmail.com" 10 - "guidovranken@gmail.com" 12 - address 13 - undefined 14 main_repo: 'https://github.com/libressl-portable/portable.git'
|
| /external/curl/.github/workflows/ |
| D | linux.yml | 3 # SPDX-License-Identifier: curl 10 - master 11 - '*/ci' 12 paths-ignore: 13 - '**/*.md' 14 - '.azure-pipelines.yml' 15 - '.circleci/**' 16 - '.cirrus.yml' 17 - 'appveyor.*' 18 - 'packages/**' [all …]
|
| /external/curl/plan9/ |
| D | README | 12 LibreSSL Portable can be downloaded from: 14 https://github.com/libressl-portable/portable/pull/510 20 % bind -ac ../lib lib 21 % bind -ac ../src src 22 % bind -ac ../include include 23 % bind -ac .. .
|
| /external/oss-fuzz/projects/cryptofuzz/ |
| D | Dockerfile | 7 # http://www.apache.org/licenses/LICENSE-2.0 17 FROM gcr.io/oss-fuzz-base/base-builder-rust 22 RUN apt-get update && \ 23 …pt-get install -y software-properties-common wget make autoconf automake libtool build-essential c… 25 RUN git clone --depth 1 https://github.com/guidovranken/cryptofuzz 26 RUN git clone --depth 1 https://github.com/guidovranken/cryptofuzz-corpora 27 RUN git clone --depth 1 https://github.com/openssl/openssl 28 RUN git clone --depth 1 https://boringssl.googlesource.com/boringssl 29 RUN git clone --depth 1 https://github.com/libressl-portable/portable libressl 30 RUN cd $SRC/libressl && ./update.sh [all …]
|
| D | build.sh | 1 #!/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/rust/crates/openssl/src/ssl/ |
| D | mod.rs | 3 //! `SslConnector` and `SslAcceptor` should be used in most cases - they handle 120 /// Returns the OpenSSL name of a cipher corresponding to an RFC-standard cipher name. 127 pub fn cipher_name(std_name: &str) -> &'static str { in cipher_name() 168 /// [RFC 4347 Section 4.2.1]: https://tools.ietf.org/html/rfc4347#section-4.2.1 224 /// Requires OpenSSL 1.1.1 or LibreSSL 3.4.0 or newer. 230 /// Requires OpenSSL 1.0.2 or LibreSSL 3.3.2 or newer. 236 /// Requires OpenSSL 1.0.2 or LibreSSL 3.3.2 or newer. 273 /// Temporarily reprioritize ChaCha20-Poly1305 ciphers to the top of the server cipher list 274 /// if a ChaCha20-Poly1305 cipher is at the top of the client cipher list. This helps those 275 /// clients (e.g. mobile) use ChaCha20-Poly1305 if that cipher is anywhere in the server [all …]
|
| /external/tcpdump/ |
| D | configure.ac | 25 # At minimum, we want C++/C99-style // comments. 40 AS_HELP_STRING([--disable-universal],[don't build universal on macOS])) 46 # Leopard. Build for x86 and 32-bit PowerPC, with 49 V_CCOPT="$V_CCOPT -arch i386 -arch ppc" 50 LDFLAGS="$LDFLAGS -arch i386 -arch ppc" 55 # Snow Leopard. Build for x86-64 and x86, with 56 # x86-64 first. (That's what Apple does.) 58 V_CCOPT="$V_CCOPT -arch x86_64 -arch i386" 59 LDFLAGS="$LDFLAGS -arch x86_64 -arch i386" 68 [AS_HELP_STRING([--with-smi], [all …]
|
| D | configure | 2 # Guess values for system-dependent variables and create Makefiles. 6 # Copyright (C) 1992-1996, 1998-2012 Free Software Foundation, Inc. 11 ## -------------------- ## 13 ## -------------------- ## 17 if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then : 20 # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which 22 alias -g '${1+"$@"}'='"$@"' 25 case `(set -o) 2>/dev/null` in #( 27 set -o posix ;; #( 43 if test -z "$BASH_VERSION$ZSH_VERSION" \ [all …]
|
| /external/python/cpython2/Doc/library/ |
| D | ssl.rst | 1 :mod:`ssl` --- TLS/SSL wrapper for socket objects 19 -------------- 23 sockets, both client-side and server-side. This module uses the OpenSSL 38 Don't use this module without reading the :ref:`ssl-security`. Doing so 48 :class:`socket.socket` type, and provides a socket-like wrapper that also 60 ------------------------------------ 66 higher-level encryption and authentication layer that's superimposed on the 98 A subclass of :exc:`SSLError` raised by a :ref:`non-blocking SSL socket 99 <ssl-nonblocking>` when trying to read or write data, but more data needs 107 A subclass of :exc:`SSLError` raised by a :ref:`non-blocking SSL socket [all …]
|
| /external/curl/docs/ |
| D | INSTALL.md | 1 <!-- 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] 52 ./configure --help 57 ./configure --prefix=/path/to/curl/tree 63 ./configure --prefix=$HOME 72 ./configure --with-openssl [all …]
|
| D | FAQ | 20 1.11 Why do you not update ca-bundle.crt 35 3.3 Why does my posting using -F not work? 42 3.10 What about SOAP, WebDAV, XML-RPC or similar protocols over HTTP? 43 3.11 How do I POST with a different Content-Type? 44 3.12 Why do FTP-specific features over HTTP proxy fail? 54 3.22 curl -X gives me HTTP problems 74 4.13 Why is curl -R on Windows one hour off? 78 4.17 Non-functional connect timeouts on Windows 81 4.20 curl does not return error for HTTP non-200 responses 84 5.1 Is libcurl thread-safe? [all …]
|
| /external/python/cpython3/Doc/whatsnew/ |
| D | 3.7.rst | 36 sufficient; the e-mail address isn't necessary. 52 Summary -- Release Highlights 60 * :ref:`PEP 563 <whatsnew37-pep563>`, postponed evaluation of type annotations. 68 * :mod:`contextvars`: :ref:`PEP 567 -- Context Variables <whatsnew37-pep567>` 69 * :mod:`dataclasses`: :ref:`PEP 557 -- Data Classes <whatsnew37-pep557>` 72 New built-in features: 74 * :ref:`PEP 553 <whatsnew37-pep553>`, the new :func:`breakpoint` function. 78 * :ref:`PEP 562 <whatsnew37-pep562>`, customization of access to 81 * :ref:`PEP 560 <whatsnew37-pep560>`, core support for typing module and 84 * the insertion-order preservation nature of :ref:`dict <typesmapping>` [all …]
|
| /external/libevent/ |
| D | ChangeLog | 1 Changes in version 2.1.12-stable (05 Jul 2020) 18 o Merge branch 'event_rpcgen.py-cleanup' (f0ded5f3, 48e04887 Enji Cooper) 23 o Merge branch 'osx-clock' (e85afbe3 Azat Khuzhin) 24 …o test-ratelim: calculate timers bias (for slow CPUs) to avoid false-positive (8ad26d0b Azat Khuzh… 28 o http: fix undefined-shift in EVUTIL_IS*_ helpers (6b8d02a7 Azat Khuzhin) 32 …po in GetAdaptersAddresses windows library. It should be iphlpapi.dll (891adda9 Aleksandr-Melnikov) 33 o Merge branch 'EV_CLOSED-and-EV_ET-fixes' (db2efdf5 Azat Khuzhin) 41 o Merge branch 'fix-signal-leak' (poll/select now needs reinit) (1c9cc07b Azat Khuzhin) 56 o https-client: load certificates from the system cert store on Windows (e9478640 yuangongji) 71 o Merge branch 'http-connect' (e2424229 Azat Khuzhin) [all …]
|
| /external/python/cpython2/Lib/test/ |
| D | test_ssl.py | 1 # -*- coding: utf-8 -*- 29 IS_LIBRESSL = ssl.OPENSSL_VERSION.startswith('LibreSSL') 66 REMOTE_HOST = "self-signed.pythontest.net" 121 return -time.altzone # seconds 122 return -time.timezone 226 ('http://SVRIntl-G3-aia.verisign.com/SVRIntlG3.cer',)) 228 ('http://SVRIntl-G3-crl.verisign.com/SVRIntlG3.crl',)) 240 (('emailAddress', 'python-dev@python.org'),)) 288 self.fail("DER-to-PEM didn't include correct header:\n%r\n" % p2) 290 self.fail("DER-to-PEM didn't include correct footer:\n%r\n" % p2) [all …]
|
| /external/python/cpython3/Misc/NEWS.d/ |
| D | 3.5.0a1.rst | 4 .. release date: 2015-02-08 7 PEP 475 - EINTR handling. 95 .. nonce: p4B1H- 98 Delay-load ShellExecute[AW] in os.startfile for reduced startup overhead on 108 pyatomic.h now uses stdatomic.h or GCC built-in functions for atomic memory 118 %-interpolation (aka printf) formatting added for bytes and bytearray. 137 with non-string argument. Based on patch by Renaud Blanch. 146 If the current working directory ends up being set to a non-existent 153 .. nonce: rAWg-V 175 Fix crash when trying to enlarge a bytearray to 0x7fffffff bytes on a 32-bit [all …]
|
| D | 3.8.0a1.rst | 2 .. date: 2019-01-15-18-16-05 4 .. release date: 2019-02-03 7 [CVE-2019-5010] Fix a NULL pointer deref in ssl module. The cert parser did 10 (TALOS-2018-0758) reported by Colin Read and Nicolas Edet of Cisco. 15 .. date: 2018-11-23-15-00-23 19 The :option:`-I` command line option (run Python in isolated mode) is now 21 spawning child processes. Previously, only :option:`-E` and :option:`-s` 22 options (enabled by :option:`-I`) were copied. 27 .. date: 2018-09-24-18-49-25 33 -E or -I arguments. [all …]
|
| /external/libpcap/ |
| D | configure | 2 # Guess values for system-dependent variables and create Makefiles. 6 # Copyright (C) 1992-1996, 1998-2012 Free Software Foundation, Inc. 11 ## -------------------- ## 13 ## -------------------- ## 17 if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then : 20 # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which 22 alias -g '${1+"$@"}'='"$@"' 25 case `(set -o) 2>/dev/null` in #( 27 set -o posix ;; #( 43 if test -z "$BASH_VERSION$ZSH_VERSION" \ [all …]
|
| D | CMakeLists.txt | 65 # For getting raw lists of --libs and --libs --static information from a 66 # pkg-config module. 71 # a UN*X, -l can be prefixed - i.e., names, without extensions, 74 # containing the libraries, to which, on a UN*X, -L can be 78 # than -l and -L flags 90 # pkg-config, so the output of --libs, etc. may include a -L for the 92 # pcap-config files. 94 # So we just run pkg-config ourselves, so that we get its output 100 # Get the --libs information. 104 # pkg_check_modules() before running pkg-config and *not* undefine [all …]
|
| /external/wpa_supplicant_8/wpa_supplicant/ |
| D | ChangeLog | 3 2022-01-16 - v2.10 5 - improved protection against side channel attacks 6 [https://w1.fi/security/2022-1/] 7 - added support for the hash-to-element mechanism (sae_pwe=1 or 10 - fixed PMKSA caching with OKC 11 - added support for SAE-PK 12 * EAP-pwd changes 13 - improved protection against side channel attacks 14 [https://w1.fi/security/2022-1/] 17 [https://w1.fi/security/2021-1/] [all …]
|
| /external/python/cpython3/Misc/ |
| D | HISTORY | 2 -------------- 13 Release date: 2017-01-17 21 Release date: 2017-01-02 24 ----------------- 26 - Issue #28648: Fixed crash in Py_DecodeLocale() in debug build on Mac OS X 29 - Issue #28426: Fixed potential crash in PyUnicode_AsDecodedObject() in debug 33 ------- 35 - Issue #28563: Fixed possible DoS and arbitrary code execution when handle 39 - In the curses module, raise an error if window.getstr() or window.instr() is 42 - Issue #27783: Fix possible usage of uninitialized memory in operator.methodcaller. [all …]
|
| /external/python/cpython3/Lib/test/ |
| D | test_ssl.py | 113 (('commonName', 'our-ca-server'),)), 128 SIGNED_CERTFILE_ECC_HOSTNAME = 'localhost-ecc' 138 REMOTE_HOST = "self-signed.pythontest.net" 146 TALOS_INVALID_CRLDP = data_file("talos-2019-0758.pem") 162 # Assume that any references of "ubuntu" implies Ubuntu-like distro 164 with open("/etc/os-release", encoding="utf-8") as f: 198 # auto-negotiate protocols are always available 223 # bpo43791: 3.0.0-alpha14 fails with TLSV1_ALERT_INTERNAL_ERROR 271 return -time.altzone # seconds 272 return -time.timezone [all …]
|
| /external/curl/ |
| D | configure | 2 # Guess values for system-dependent variables and create Makefiles. 3 # Generated by GNU Autoconf 2.71 for curl -. 8 # Copyright (C) 1992-1996, 1998-2017, 2020-2021 Free Software Foundation, 19 ## -------------------------------- ## 21 ## -------------------------------- ## 66 # Try built-in echo, and fail. 77 (`test -n "$xc_tst_str" >/dev/null 2>&1`) && xc_tst_str='success' 93 (`test -n "$PATH" >/dev/null 2>&1`) && xc_tst_str='success' 126 | sed -e 's:unknown:success:' 2>/dev/null` 160 | tr -d "0123456789$xc_tab" 2>/dev/null` [all …]
|