/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/ |
OkHttpClient.java | 502 * href="http://tools.ietf.org/html/draft-ietf-tls-applayerprotoneg">ALPN</a> 620 * used the shared SSL context, when OkHttp enables ALPN for its SPDY-related 621 * stuff, it would also enable ALPN for other usages, which might crash them 622 * because ALPN is enabled when it isn't expected to be.
|
ConnectionSpec.java | 63 /** A modern TLS connection with extensions like SNI and ALPN available. */
|
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/framed/ |
FrameReader.java | 129 * @param protocol an ALPN protocol, such as {@code h2}.
|
/prebuilts/go/darwin-x86/src/crypto/tls/ |
handshake_server_test.go | 777 name: "ALPN", 779 // version that supports the -alpn flag. 780 command: []string{"openssl", "s_client", "-alpn", "proto2,proto1"}, 798 name: "ALPN-NoMatch", 800 // version that supports the -alpn flag. 801 command: []string{"openssl", "s_client", "-alpn", "proto2,proto1"}, [all...] |
handshake_client.go | 596 return false, errors.New("tls: server advertised unrequested ALPN extension") 601 return false, errors.New("tls: server advertised both NPN and ALPN extensions") 835 // mutualProtocol finds the mutual Next Protocol Negotiation or ALPN protocol
|
handshake_client_test.go | 850 name: "ALPN", 852 // version that supports the -alpn flag. 853 command: []string{"openssl", "s_server", "-alpn", "proto1,proto2"}, [all...] |
handshake_messages.go | 102 panic("invalid ALPN protocol") 583 panic("invalid ALPN protocol") 801 // ALPN protocols must not be empty. [all...] |
/prebuilts/go/linux-x86/src/crypto/tls/ |
handshake_server_test.go | 777 name: "ALPN", 779 // version that supports the -alpn flag. 780 command: []string{"openssl", "s_client", "-alpn", "proto2,proto1"}, 798 name: "ALPN-NoMatch", 800 // version that supports the -alpn flag. 801 command: []string{"openssl", "s_client", "-alpn", "proto2,proto1"}, [all...] |
handshake_client.go | 596 return false, errors.New("tls: server advertised unrequested ALPN extension") 601 return false, errors.New("tls: server advertised both NPN and ALPN extensions") 835 // mutualProtocol finds the mutual Next Protocol Negotiation or ALPN protocol
|
handshake_client_test.go | 850 name: "ALPN", 852 // version that supports the -alpn flag. 853 command: []string{"openssl", "s_server", "-alpn", "proto1,proto2"}, [all...] |
handshake_messages.go | 102 panic("invalid ALPN protocol") 583 panic("invalid ALPN protocol") 801 // ALPN protocols must not be empty. [all...] |
/external/conscrypt/openjdk/src/test/java/org/conscrypt/ |
ConscryptEngineTest.java | 273 // Configure ALPN protocols 289 // Configure ALPN protocols
|
/external/curl/src/ |
tool_cfgable.h | 241 bool noalpn; /* enable/disable TLS ALPN extension */
|
tool_help.c | 241 {" --no-alpn", 242 "Disable the ALPN TLS extension"},
|
/external/boringssl/src/ssl/ |
tls13_server.cc | 246 // HTTP/2 negotiation depends on the cipher suite, so ALPN negotiation was 397 // The negotiated ALPN must match the one in the ticket. 427 // Store the initial negotiated ALPN in the session. [all...] |
t1_lib.cc | [all...] |
/external/scapy/scapy/layers/tls/ |
extensions.py | 36 0x10: "alpn", # RFC 7301 84 Dummy extension used for server_name/ALPN/NPN for a lighter representation: 520 Defined in RFC-draft-agl-tls-nextprotoneg-03. Deprecated in favour of ALPN.
|
/frameworks/base/core/java/android/net/ |
SSLCertificateSocketFactory.java | 291 * Application Layer Protocol Negotiation (ALPN)</a> protocols that this peer 296 * all clients that support ALPN. 352 * Layer Protocol Negotiation (ALPN)</a> protocol selected by client and server, or null
|
/external/boringssl/src/ssl/test/runner/ |
common.go | 254 NegotiatedProtocolFromALPN bool // protocol negotiated with ALPN 744 // SwapNPNAndALPN switches the relative order between NPN and ALPN in 748 // ALPNProtocol, if not nil, sets the ALPN protocol that a server will [all...] |
/external/boringssl/src/include/openssl/ |
ssl.h | [all...] |
/external/curl/lib/vtls/ |
gtls.c | 778 infof(data, "ALPN, offering %s\n", NGHTTP2_PROTO_VERSION_ID); 785 infof(data, "ALPN, offering %s\n", ALPN_HTTP_1_1); [all...] |
/external/okhttp/website/ |
index.html | 61 with modern TLS features (SNI, ALPN), and falls back to TLS 1.0 if the handshake
|
/external/python/cpython3/Lib/ |
ssl.py | 425 raise SSLError('ALPN protocols must be 1 to 255 in length') 655 """Return the currently selected ALPN protocol as a string, or ``None`` 656 if a next protocol was not negotiated or if ALPN is not supported by one [all...] |
/external/conscrypt/common/src/main/java/org/conscrypt/ |
NativeCrypto.java | [all...] |
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/io/ |
RealConnection.java | 212 // Success! Save the handshake and the ALPN protocol.
|