Home
last modified time | relevance | path

Searched refs:ALPN (Results 1 – 25 of 25) sorted by relevance

/external/curl/docs/
DHTTP2.md38 ALPN (or NPN) to negotiate which protocol to continue with. Possibly introduce
44 ALPN is the TLS extension that HTTP/2 is expected to use. The NPN extension is
45 for a similar purpose, was made prior to ALPN and is used for SPDY so early
46 HTTP/2 servers are implemented using NPN before ALPN support is widespread.
49 applications to explicitly disable ALPN or NPN.
54 The challenge is the ALPN and NPN support and all our different SSL
58 - OpenSSL: ALPN and NPN
59 - libressl: ALPN and NPN
60 - BoringSSL: ALPN and NPN
61 - NSS: ALPN and NPN
[all …]
/external/curl/docs/cmdline-opts/
Dno-alpn.d7 Help: Disable the ALPN TLS extension
9 Disable the ALPN TLS extension. ALPN is enabled by default if libcurl was built
10 with an SSL library that supports ALPN. ALPN is used by a libcurl that supports
/external/grpc-grpc-java/
DSECURITY.md7ALPN](https://tools.ietf.org/html/draft-ietf-tls-applayerprotoneg-05) to negotiate the use of the …
16 ciper-suites and a reliable ALPN implementation. This requires [updating the
20 Although ALPN mostly works on newer Android releases (especially since 5.0),
53 3. **ALPN to NPN Fallback**: if the remote endpoint doesn't support ALPN.
62 …R. Using this artifact requires no extra installation and guarantees that ALPN and the ciphers req…
121 1. [OpenSSL](https://www.openssl.org/) version >= 1.0.2 for ALPN support, or version >= 1.0.1 for N…
218 ## TLS with JDK (Jetty ALPN/NPN)
222 …mended approach is to use [OpenSSL](#tls-with-openssl). Using the JDK for ALPN is generally much s…
224ALPN brings its own baggage in that the Java bootclasspath needs to be modified, which may not be …
226 *The moral of the story is: Don't use the JDK for ALPN! But if you absolutely have to, here's how …
[all …]
Dbuild.gradle242 // Jetty ALPN dependencies
247 // Define a separate configuration for managing the dependency on Jetty ALPN agent.
270 // Configuration for modules that use Jetty ALPN agent
DCONTRIBUTING.md53 ### Jetty ALPN setup for IntelliJ
/external/grpc-grpc-java/netty/src/main/java/io/grpc/netty/
DGrpcSslContexts.java79 private static final ApplicationProtocolConfig ALPN = new ApplicationProtocolConfig( field in GrpcSslContexts
80 Protocol.ALPN,
219 apc = ALPN; in configure()
223 apc = ALPN; in configure()
229 apc = ALPN; in configure()
/external/grpc-grpc-java/interop-testing/
Dbuild.gradle47 // For the automated tests, use Jetty ALPN.
52 // Note that OkHttp currently only supports ALPN, so OpenSSL version >= 1.0.2 is required.
/external/grpc-grpc-java/netty/
Dbuild.gradle33 // Allow testing Jetty ALPN in TlsTest
/external/grpc-grpc/doc/
Dssl-performance.md3 …n't necessarily making it easy to integrate. The HTTP/2 protocol requires ALPN support, which is a…
Dinterop-test-descriptions.md40 Clients must support TLS with ALPN. Clients must not disable certificate
1026 Servers must support TLS with ALPN. They should use
/external/okhttp/
DCHANGELOG.md308 * **Fix: Disable ALPN on Android 4.4.** That release of the feature was
357 * Fix: Drop NPN support. Going forward we support ALPN only.
364 * Fix: Don't leak connections when using ALPN on the desktop.
365 * Fix: Update Jetty ALPN to `7.1.2.v20141202` (Java 7) and `8.1.2.v20141202` (Java 8).
610 * Add ALPN support. Maven will use ALPN on OpenJDK 8.
635 * Drop ALPN support in Android. There's a concurrency bug in all
699 * New: Use ALPN on Android platforms that support it (4.4+)
/external/python/cpython2/Misc/NEWS.d/
D2.7.14rc1.rst116 Address ALPN callback changes for OpenSSL 1.1.0f. The latest version behaves
D2.7.10rc1.rst553 Support Application-Layer Protocol Negotiation (ALPN) in the ssl module.
/external/grpc-grpc/src/objective-c/tests/CronetUnitTests/
DCronetUnitTests.m93 // Always select "h2" as the ALPN protocol to be used
117 // Select ALPN protocol
/external/conscrypt/benchmark-jmh/src/jmh/java/org/conscrypt/
DOpenJdkEngineFactory.java44 new ApplicationProtocolConfig(Protocol.ALPN, SelectorFailureBehavior.NO_ADVERTISE,
/external/opencensus-java/
Dbuild.gradle479 // also configure ALPN if running on a platform (e.g. FreeBSD) that is not
/external/curl/
DRELEASE-NOTES24 o Secure Transport: tvOS 11 is required for ALPN support [94]
DCHANGES87 - sectransp: tvOS 11 is required for ALPN support
285 SSL ALPN/NPN, SSL engine, SSL version, SSL issuer cert,
1625 --no-alpn'[Disable the ALPN TLS extension]' \
6642 darwinssl: add support for ALPN negotiation
/external/python/cpython3/Misc/NEWS.d/
D3.6.3rc1.rst706 Address ALPN callback changes for OpenSSL 1.1.0f. The latest version behaves
D3.5.0a1.rst923 Support Application-Layer Protocol Negotiation (ALPN) in the ssl module.
D3.7.0a1.rst4935 Address ALPN callback changes for OpenSSL 1.1.0f. The latest version behaves
/external/python/cpython2/Doc/library/
Dssl.rst1002 not support ALPN, if this socket does not support any of the client's
1195 when both sides support ALPN but cannot agree on a protocol. 1.1.0f+
/external/python/cpython3/Doc/library/
Dssl.rst1294 not support ALPN, if this socket does not support any of the client's
1655 when both sides support ALPN but cannot agree on a protocol. 1.1.0f+
/external/python/cpython3/Doc/whatsnew/
D3.5.rst1786 The :data:`~ssl.HAS_ALPN` flag indicates whether ALPN support is present.
/external/scapy/doc/notebooks/
DHTTP_2_Tuto.ipynb40 …fairly recent version of the Python ssl module. We indeed need support of ALPN (https://www.rfc-ed…
77 "# Testing support for ALPN\n",