HomeSort by relevance Sort by last modified time
    Searched refs:Handshake (Results 26 - 50 of 56) sorted by null

12 3

  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/
Cache.java 475 private final Handshake handshake; field in class:Entry
557 handshake = Handshake.get(cipherSuite, peerCertificates, localCertificates);
559 handshake = null;
574 this.handshake = response.handshake();
606 sink.writeUtf8(handshake.cipherSuite());
608 writeCertList(sink, handshake.peerCertificates());
609 writeCertList(sink, handshake.localCertificates())
    [all...]
  /external/okhttp/okhttp-urlconnection/src/main/java/com/squareup/okhttp/internal/huc/
HttpURLConnectionImpl.java 21 import com.squareup.okhttp.Handshake;
106 * The most recently received TLS handshake. This will be null if we haven't
109 Handshake handshake; field in class:HttpURLConnectionImpl
465 handshake = connection.getHandshake();
468 handshake = null;
  /external/boringssl/src/ssl/test/runner/
tls.go 94 // then initiates a TLS handshake, returning the resulting TLS connection. Any
96 // handshake as a whole.
102 // whole process: TCP connection and TLS handshake. This means that we
148 err = conn.Handshake()
151 errChannel <- conn.Handshake()
166 // and then initiates a TLS handshake, returning the resulting
conn.go 35 // constant after handshake; protected by handshakeMutex
37 handshakeErr error // error resulting from handshake
57 // handshake. This is the "tls-unique" channel binding value.
60 // by the peer in the handshake, or zero if not applicable.
62 // curveID contains the curve that was used in the handshake, or zero if
95 hand bytes.Buffer // handshake record waiting to be read
98 // handshake data to be split into records at the end of the flight.
104 handMsg []byte // pending assembled handshake message
105 handMsgLen int // handshake message length, not including the header
106 pendingFragments [][]byte // pending outgoing handshake fragments
    [all...]
dtls.go 113 // previous or next handshake message.
132 // Only handshake messages are fragmented.
136 // Flush pending handshake messages before encrypting a new record.
174 // ChangeCipherSpec is part of the handshake and not
196 // Handshake messages have to be modified to include fragment
201 // handshake message. This is incompatible with
259 // Increment the handshake sequence number for the next
260 // handshake message.
265 // dtlsPackHandshake packs the pending handshake flight into the pending
290 // Pack handshake fragments into records
    [all...]
prf.go 150 // pre-master secret when the Triple Handshake fix is in effect. See
219 // A finishedHash calculates the hash of a set of handshake messages suitable
284 // Finished message given the MD5 and SHA1 hashes of a set of handshake
367 // ID. If a resumption, resumeHash has the previous handshake
381 // buffer the entirety of the handshake messages.
387 // given secret is not available in the handshake. See draft-ietf-tls-tls13-16,
425 // appendContextHashes returns the concatenation of the handshake hash and the
common.go 61 maxHandshake = 65536 // maximum handshake we support (protocol max is 16 MB)
78 // TLS handshake message types.
249 HandshakeComplete bool // TLS handshake is complete
264 PeerSignatureAlgorithm signatureAlgorithm // algorithm used by the peer in the handshake
289 masterSecret []byte // MasterSecret generated by client on a full handshake
290 handshakeHash []byte // Handshake hash for Channel ID purposes.
366 // in the client's handshake to support virtual hosting.
406 // random data before the first server handshake.
435 // an ECDHE handshake, in preference order. If empty, the default will
559 // FailIfNotFallbackSCSV causes a server handshake to fail if th
    [all...]
  /prebuilts/go/darwin-x86/src/crypto/tls/
conn.go 30 // constant after handshake; protected by handshakeMutex
33 // to running the handshake for this Conn. Other goroutines that need
34 // to wait for the handshake can wait on this, under handshakeMutex.
36 handshakeErr error // error resulting from handshake
41 // application data (i.e. is not currently processing a handshake).
63 // message during the most recent handshake. This is recorded because
75 // by the client or server in the most recent handshake. This is
88 hand bytes.Buffer // handshake data waiting to be read
570 // handshake data if handshake not yet completed
    [all...]
tls.go 92 // then initiates a TLS handshake, returning the resulting TLS connection. Any
94 // handshake as a whole.
100 // whole process: TCP connection and TLS handshake. This means that we
146 err = conn.Handshake()
149 errChannel <- conn.Handshake()
164 // and then initiates a TLS handshake, returning the resulting
  /prebuilts/go/linux-x86/src/crypto/tls/
conn.go 30 // constant after handshake; protected by handshakeMutex
33 // to running the handshake for this Conn. Other goroutines that need
34 // to wait for the handshake can wait on this, under handshakeMutex.
36 handshakeErr error // error resulting from handshake
41 // application data (i.e. is not currently processing a handshake).
63 // message during the most recent handshake. This is recorded because
75 // by the client or server in the most recent handshake. This is
88 hand bytes.Buffer // handshake data waiting to be read
570 // handshake data if handshake not yet completed
    [all...]
tls.go 92 // then initiates a TLS handshake, returning the resulting TLS connection. Any
94 // handshake as a whole.
100 // whole process: TCP connection and TLS handshake. This means that we
146 err = conn.Handshake()
149 errChannel <- conn.Handshake()
164 // and then initiates a TLS handshake, returning the resulting
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/
DebugEventSocketProxy.cs 94 public virtual void Handshake() {
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/
DebugEventSocketProxy.cs 99 public virtual void Handshake()
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/BuildOptions/
DebugTreeGrammar.cs 71 proxy.Handshake();
DebugGrammarParser.cs 73 proxy.Handshake();
    [all...]
  /prebuilts/go/darwin-x86/src/net/http/
transport.go 129 // past the TLS handshake.
139 // wait for a TLS handshake. Zero means no timeout.
    [all...]
transport_test.go     [all...]
  /prebuilts/go/linux-x86/src/net/http/
transport.go 129 // past the TLS handshake.
139 // wait for a TLS handshake. Zero means no timeout.
    [all...]
transport_test.go     [all...]
  /prebuilts/tools/common/m2/repository/com/squareup/okhttp/okhttp/2.5.0/
okhttp-2.5.0.jar 
  /prebuilts/tools/common/m2/repository/com/squareup/okhttp/okhttp/2.7.2/
okhttp-2.7.2.jar 
  /prebuilts/tools/common/m2/repository/com/squareup/okhttp/okhttp/2.7.4/
okhttp-2.7.4.jar 
  /prebuilts/tools/common/m2/repository/com/squareup/okhttp3/okhttp/3.3.0/
okhttp-3.3.0.jar 
  /prebuilts/tools/common/m2/repository/com/squareup/okhttp3/okhttp/3.4.1/
okhttp-3.4.1.jar 
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
ks.h     [all...]

Completed in 557 milliseconds

12 3