Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 28 for serverCertificate (0.28 sec)

  1. okhttp/src/test/java/okhttp3/HandshakeTest.kt

          .signedBy(serverRoot)
          .build()
      val serverCertificate =
        HeldCertificate.Builder()
          .signedBy(serverIntermediate)
          .build()
    
      @Test
      fun createFromParts() {
        val handshake =
          Handshake.get(
            tlsVersion = TlsVersion.TLS_1_3,
            cipherSuite = CipherSuite.TLS_AES_128_GCM_SHA256,
            peerCertificates = listOf(serverCertificate.certificate, serverIntermediate.certificate),
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  2. samples/jwt-server/src/main.go

    	return &JWTServer{
    		httpPort:          make(chan int, 1),
    		httpsPort:         make(chan int, 1),
    		serverCertificate: certificate,
    		serverPrivateKey:  key,
    	}
    }
    
    func main() {
    	flag.Parse()
    	s := NewJwtServer(*serverCert, *serverkey)
    	go s.runHTTP(fmt.Sprintf(":%s", *httpPort))
    	if s.serverCertificate != "" && s.serverPrivateKey != "" {
    		go s.runHTTPS(fmt.Sprintf(":%s", *httpsPort))
    	}
    	defer s.stop()
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 16 23:56:50 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  3. pkg/config/analysis/analyzers/gateway/certificate.go

    	}
    
    	if currentGatewayTLS.CredentialName == "" && gatewayTLS.CredentialName == "" {
    		if currentGatewayTLS.ServerCertificate != "" && gatewayTLS.ServerCertificate != "" {
    			if currentGatewayTLS.ServerCertificate == gatewayTLS.ServerCertificate {
    				if currentGatewayTLS.PrivateKey != "" && gatewayTLS.PrivateKey != "" {
    					return currentGatewayTLS.PrivateKey == gatewayTLS.PrivateKey
    				}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 01 01:34:15 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  4. okhttp-tls/README.md

    HeldCertificate serverCertificate = new HeldCertificate.Builder()
        .commonName("ingen")
        .addSubjectAlternativeName(server.getHostName())
        .signedBy(rootCertificate)
        .build();
    HandshakeCertificates serverCertificates = new HandshakeCertificates.Builder()
        .addTrustedCertificate(rootCertificate.certificate())
        .heldCertificate(serverCertificate)
        .build();
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Dec 17 15:34:10 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  5. okhttp-tls/src/test/java/okhttp3/tls/HandshakeCertificatesTest.kt

            .certificateAuthority(0)
            .signedBy(serverRoot)
            .build()
        val serverCertificate =
          HeldCertificate.Builder()
            .signedBy(serverIntermediate)
            .build()
        val server =
          HandshakeCertificates.Builder()
            .addTrustedCertificate(clientRoot.certificate)
            .heldCertificate(serverCertificate, serverIntermediate.certificate)
            .build()
        val client =
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Thu Apr 11 22:09:35 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  6. tests/testdata/config/egressgateway.yaml

          protocol: HTTPS
        hosts:
        - egressgateway.bookinfo.com
        tls:
          # We can reuse the standard Istio certs mounted in the gateway
          mode: SIMPLE #enables HTTPS on this port
          serverCertificate: /etc/certs/cert-chain.pem
          privateKey: /etc/certs/key.pem
          caCertificates: /etc/certs/root-cert.pem
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Jan 19 04:56:49 UTC 2019
    - 933 bytes
    - Viewed (0)
  7. tests/testdata/config/gateway-all.yaml

      - port:
          number: 443
          name: https
          protocol: HTTPS
        hosts:
        - uk.bookinfo.com
        - eu.bookinfo.com
        tls:
          mode: SIMPLE #enables HTTPS on this port
          serverCertificate: /etc/certs/servercert.pem
          privateKey: /etc/certs/privatekey.pem
    #  - port:
    #      number: 9080
    #      name: http-wildcard
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Jan 19 04:56:49 UTC 2019
    - 742 bytes
    - Viewed (0)
  8. tests/testdata/config/ingress.yaml

          name: http
          protocol: HTTP
        hosts:
        - "*"
      - port:
          number: 443
          name: https
          protocol: HTTPS
        hosts:
        - "*"
        tls:
          mode: SIMPLE
          serverCertificate: /etc/certs/servercert.pem
          privateKey: /etc/certs/privatekey.pem
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
      name: ingress
      namespace: testns
    spec:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Jan 19 04:56:49 UTC 2019
    - 949 bytes
    - Viewed (0)
  9. tests/testdata/config/ingressgateway.yaml

          name: https
          protocol: HTTPS
        hosts:
        - uk.bookinfo.com
        tls:
          # We can reuse the standard Istio certs mounted in the gateway
          mode: SIMPLE #enables HTTPS on this port
          serverCertificate: /etc/certs/cert-chain.pem
          privateKey: /etc/certs/key.pem
          caCertificates: /etc/certs/root-cert.pem
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Jan 19 04:56:49 UTC 2019
    - 914 bytes
    - Viewed (0)
  10. tests/fuzz/testdata/FuzzConfigValidation2/fuzz_config_validation2.dict

    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 07 17:07:53 UTC 2021
    - 2K bytes
    - Viewed (0)
Back to top