Home
last modified time | relevance | path

Searched +full:libressl +full:- +full:git (Results 1 – 21 of 21) sorted by relevance

/external/curl/.github/workflows/
Dlinux.yml3 # 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/oss-fuzz/projects/libressl/
DDockerfile7 # 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
Dproject.yaml1 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/oss-fuzz/projects/cryptofuzz/
DDockerfile7 # 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 …]
/external/curl/plan9/
DREADME12 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 .. .
27 curl.git/
/external/rust/crates/openssl/patches/
D0001-cfgs.diff1 diff --git a/.cargo/config.toml b/.cargo/config.toml
4 --- /dev/null
6 @@ -0,0 +1,2 @@
7 +[patch.crates-io]
8 +bssl-sys = { version = "0.1.0", path = "../../../boringssl/src/rust/bssl-sys", optional=true }
9 diff --git a/src/cipher.rs b/src/cipher.rs
11 --- a/src/cipher.rs
13 @@ -208,6 +208,7 @@ impl Cipher {
18 pub fn aes_192_cfb128() -> &'static CipherRef {
21 @@ -253,6 +254,7 @@ impl Cipher {
[all …]
D0007-cfgs.diff1 diff --git a/src/cipher.rs b/src/cipher.rs
3 --- a/src/cipher.rs
5 @@ -350,11 +350,13 @@ impl Cipher {
10 pub fn bf_cfb64() -> &'static CipherRef {
16 pub fn bf_ofb() -> &'static CipherRef {
19 @@ -400,101 +402,121 @@ impl Cipher {
24 pub fn camellia128_cfb128() -> &'static CipherRef {
30 pub fn camellia128_ecb() -> &'static CipherRef {
36 pub fn camellia128_cbc() -> &'static CipherRef {
42 pub fn camellia128_ofb() -> &'static CipherRef {
[all …]
/external/libwebsockets/
Dchangelog2 ---------
7 - Add full CBOR stream parsing and writing support, with huge
9 See ./READMEs/README.cbor-lecp.md
10 - Add COSE key and signing / validation support with huge amount of
14 See ./READMEs/README.cbor-cose.md
15 - JIT Trust: for constrained devices, provides a way to determine the
19 See ./READMEs/README.jit-trust.md
20 - Add support for client Netscape cookie jar with caching
21 - Secure Streams: issue LWSSSCS_EVENT_WAIT_CANCELLED state() when
22 lws_cancel_service() called, so cross-thread events can be handled
[all …]
/external/curl/docs/
DINSTALL.md1 <!--
4 SPDX-License-Identifier: curl
5 -->
20 git clone https://github.com/Microsoft/vcpkg.git
22 ./bootstrap-vcpkg.sh
30 ## Building from git
32 If you get your code off a git repository instead of a release tarball, see
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
[all …]
DFAQ20 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/cpython2/Misc/NEWS.d/
D2.7.10rc1.rst4 .. release date: 2015-05-10
26 Fix the default __sizeof__ implementation for variable-sized objects.
90 .. nonce: OZFCd-
102 Fix use-after-free bug in heapq's siftup and siftdown functions. (See also:
103 bpo-24100, bpo-24101)
193 Tkinter now supports 64-bit integers added in Tcl 8.4 and arbitrary
247 .. nonce: zWPm-a
280 If body is None, http.client.HTTPConnection.request now sets Content-Length
356 .. nonce: 98F-PP
400 also: bpo-9179)
[all …]
D2.7.15rc1.rst2 .. date: 2018-03-05-10-14-42
4 .. release date: 2018-04-14
15 .. date: 2018-03-02-10-24-52
21 refactored. This resolves CVE-2018-1060 and CVE-2018-1061. Patch by Jamie
27 .. date: 2017-09-04-21-24-51
56 vulnerabilities including: CVE-2017-9233 (External entity infinite loop
57 DoS), CVE-2016-9063 (Integer overflow, re-fix), CVE-2016-0718 (Fix
58 regression bugs from 2.2.0's fix to CVE-2016-0718) and CVE-2012-0876
59 (Counter hash flooding with SipHash). Note: the CVE-2016-5300 (Use
60 os-specific entropy sources like getrandom) doesn't impact Python, since Python
[all …]
/external/libevent/
DChangeLog1 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/cpython3/Doc/whatsnew/
D3.7.rst36 sufficient; the e-mail address isn't necessary.
44 This saves the maintainer the effort of going through the Git log
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
[all …]
/external/wpa_supplicant_8/hostapd/
DChangeLog3 2022-01-16 - v2.10
5 - improved protection against side channel attacks
6 [https://w1.fi/security/2022-1/]
7 - added option send SAE Confirm immediately (sae_config_immediate=1)
9 - added support for the hash-to-element mechanism (sae_pwe=1 or
11 - fixed PMKSA caching with OKC
12 - added support for SAE-PK
13 * EAP-pwd changes
14 - improved protection against side channel attacks
15 [https://w1.fi/security/2022-1/]
[all …]
/external/python/cpython3/Misc/NEWS.d/
D3.5.0a1.rst4 .. 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 …]
D3.9.0a1.rst2 .. date: 2019-11-18-16-17-56
4 .. release date: 2019-11-19
13 .. date: 2019-11-14-16-13-23
22 .. date: 2019-10-08-19-29-55
23 .. nonce: QL7s0-
31 .. date: 2019-09-25-13-21-09
36 rendering the document page as HTML. (Contributed by Dong-hee Na in
42 .. date: 2019-09-23-21-02-46
47 CVE-2019-15903.
52 .. date: 2019-08-27-01-13-05
[all …]
D3.8.0a1.rst2 .. 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/tcpdump/
Dconfigure2 # 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/wpa_supplicant_8/wpa_supplicant/
DChangeLog3 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/
DHISTORY2 --------------
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 …]