Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 7 of 7 for client_hello (0.12 seconds)

  1. okhttp-logging-interceptor/src/test/java/okhttp3/logging/LoggingEventListenerTest.kt

    Created: Fri Dec 26 11:42:13 GMT 2025
    - Last Modified: Fri Jun 20 11:46:46 GMT 2025
    - 10.2K bytes
    - Click Count (0)
  2. okhttp/src/jvmTest/kotlin/okhttp3/ConnectionListenerTest.kt

        if (!platform.isConscrypt()) {
          assertThat(event.exception.message).isIn(
            "Unexpected handshake message: client_hello",
            "(unexpected_message) Unexpected handshake message: client_hello",
          )
        }
      }
    
      @Test
      @Throws(IOException::class)
      fun multipleConnectsForSingleCall() {
        enableTls()
    Created: Fri Dec 26 11:42:13 GMT 2025
    - Last Modified: Tue Nov 04 18:33:48 GMT 2025
    - 9.7K bytes
    - Click Count (0)
  3. okhttp/src/jvmTest/kotlin/okhttp3/URLConnectionTest.kt

              // Android's response to the FAIL_HANDSHAKE
            }
            is SSLException -> {
              // JDK 1.9 response to the FAIL_HANDSHAKE
              // javax.net.ssl.SSLException: Unexpected handshake message: client_hello
            }
            is SocketException -> {
              // Conscrypt's response to the FAIL_HANDSHAKE
            }
            else -> throw expected
          }
        }
      }
    
      /**
    Created: Fri Dec 26 11:42:13 GMT 2025
    - Last Modified: Sat Jun 21 20:36:35 GMT 2025
    - 133.2K bytes
    - Click Count (0)
  4. samples/guide/src/main/java/okhttp3/recipes/kt/WiresharkExample.kt

              // https://stackoverflow.com/questions/36240279/how-do-i-extract-the-pre-master-secret-using-an-openssl-based-client
    
              // TLSv1.2 Events
              // Produced ClientHello handshake message
              // Consuming ServerHello handshake message
              // Consuming server Certificate handshake message
              // Consuming server CertificateStatus handshake message
    Created: Fri Dec 26 11:42:13 GMT 2025
    - Last Modified: Sat May 10 11:15:14 GMT 2025
    - 10.9K bytes
    - Click Count (0)
  5. okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/connection/ConnectPlan.kt

              return tunnelResult
            }
          }
    
          if (route.address.sslSocketFactory != null) {
            // Assume the server won't send a TLS ServerHello until we send a TLS ClientHello. If
            // that happens, then we will have buffered bytes that are needed by the SSLSocket!
            // This check is imperfect: it doesn't tell us whether a handshake will succeed, just
    Created: Fri Dec 26 11:42:13 GMT 2025
    - Last Modified: Wed Oct 08 03:50:05 GMT 2025
    - 19.3K bytes
    - Click Count (2)
  6. lib/fips140/v1.0.0-c2097c7c.zip

    }, } } func (s *EarlySecret) ResumptionBinderKey() []byte { return deriveSecret(s.hash, s.secret, resumptionBinderLabe, nil) } // ClientEarlyTrafficSe derives the client_early_traffic_secret from the // early secret and the transcript up to the ClientHello. func (s *EarlySecret) ClientEarlyTrafficSe(transcript fips140.Hash) []byte { return deriveSecret(s.hash, s.secret, clientEarlyTrafficLa, transcript) } type HandshakeSecret struct { secret []byte hash func() fips140.Hash } func (s *EarlySecret)...
    Created: Tue Dec 30 11:13:12 GMT 2025
    - Last Modified: Thu Sep 25 19:53:19 GMT 2025
    - 642.7K bytes
    - Click Count (0)
  7. lib/fips140/v1.1.0-rc1.zip

    }, } } func (s *EarlySecret) ResumptionBinderKey() []byte { return deriveSecret(s.hash, s.secret, resumptionBinderLabe, nil) } // ClientEarlyTrafficSe derives the client_early_traffic_secret from the // early secret and the transcript up to the ClientHello. func (s *EarlySecret) ClientEarlyTrafficSe(transcript hash.Hash) []byte { return deriveSecret(s.hash, s.secret, clientEarlyTrafficLa, transcript) } type HandshakeSecret struct { secret []byte hash func() hash.Hash } func (s *EarlySecret) Hands...
    Created: Tue Dec 30 11:13:12 GMT 2025
    - Last Modified: Thu Dec 11 16:27:41 GMT 2025
    - 663K bytes
    - Click Count (0)
Back to Top