Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 169 for cipher (0.13 sec)

  1. cluster/gce/gci/configure-kubeapiserver.sh

          old_ips+=",${OLD_PRIVATE_VIP}"
        fi
        params+=" --tls-sni-cert-key=${OLD_MASTER_CERT_PATH},${OLD_MASTER_KEY_PATH}:${old_ips}"
      fi
      if [[ -n "${TLS_CIPHER_SUITES:-}" ]]; then
        params+=" --tls-cipher-suites=${TLS_CIPHER_SUITES}"
      fi
      if [[ -e "${KUBE_HOME}/bin/gke-internal-configure-helper.sh" ]]; then
        params+=" $(gke-kube-apiserver-internal-sni-param)"
      fi
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 11:08:30 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  2. src/net/http/h2_bundle.go

    )
    
    // isBadCipher reports whether the cipher is blacklisted by the HTTP/2 spec.
    // References:
    // https://tools.ietf.org/html/rfc7540#appendix-A
    // Reject cipher suites from Appendix A.
    // "This list includes those cipher suites that do not
    // offer an ephemeral key exchange and those that are
    // based on the TLS null, stream or block cipher type"
    func http2isBadCipher(cipher uint16) bool {
    	switch cipher {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  3. okhttp/src/main/kotlin/okhttp3/Cache.kt

         * followed by those lines.
         *
         * HTTPS responses also contain SSL session information. This begins with a blank line, and then
         * a line containing the cipher suite. Next is the length of the peer certificate chain. These
         * certificates are base64-encoded and appear each on their own line. The next line contains the
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 26.8K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/s390x/asmz.go

    	op_KM      uint32 = 0xB92E // FORMAT_RRE        CIPHER MESSAGE
    	op_KMAC    uint32 = 0xB91E // FORMAT_RRE        COMPUTE MESSAGE AUTHENTICATION CODE
    	op_KMC     uint32 = 0xB92F // FORMAT_RRE        CIPHER MESSAGE WITH CHAINING
    	op_KMA     uint32 = 0xB929 // FORMAT_RRF2       CIPHER MESSAGE WITH AUTHENTICATION
    	op_KMCTR   uint32 = 0xB92D // FORMAT_RRF2       CIPHER MESSAGE WITH COUNTER
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 176.7K bytes
    - Viewed (0)
  5. tests/integration/pilot/common/routing.go

          protocol: {{.GatewayProtocol}}
    {{- if .Credential }}
        tls:
          mode: {{.TLSMode}}
          credentialName: {{.Credential}}
    {{- if .Ciphers }}
          cipherSuites:
    {{- range $cipher := .Ciphers }}
          - "{{$cipher}}"
    {{- end }}
    {{- end }}
    {{- end }}
        hosts:
        - "{{.GatewayHost}}"
    ---
    `
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
  6. gradle/verification-metadata.xml

                <pgp value="F254B35617DC255D9344BCFA873A8E86B4372146"/>
             </artifact>
          </component>
          <component group="org.codehaus.plexus" name="plexus-cipher" version="2.0">
             <artifact name="plexus-cipher-2.0.jar">
                <pgp value="6A814B1F869C2BBEAB7CB7271A2A1C94BDE89688"/>
             </artifact>
          </component>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 22:30:36 UTC 2024
    - 90.1K bytes
    - Viewed (0)
  7. src/net/http/client_test.go

    	gopher := "gopher"
    	ts := newClientServerTest(t, mode, HandlerFunc(func(w ResponseWriter, r *Request) {
    		auth := r.Header.Get("Authorization")
    		if strings.HasPrefix(auth, "Basic ") {
    			encoded := auth[6:]
    			decoded, err := base64.StdEncoding.DecodeString(encoded)
    			if err != nil {
    				t.Fatal(err)
    			}
    			expected := gopher + ":"
    			s := string(decoded)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:30:50 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    	reflector.UseWatchList = ptr.To(false)
    
    	cacher.watchCache = watchCache
    	cacher.reflector = reflector
    
    	go cacher.dispatchEvents()
    	go progressRequester.Run(stopCh)
    
    	cacher.stopWg.Add(1)
    	go func() {
    		defer cacher.stopWg.Done()
    		defer cacher.terminateAllWatchers()
    		wait.Until(
    			func() {
    				if !cacher.isStopped() {
    					cacher.startCaching(stopCh)
    				}
    			}, time.Second, stopCh,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/server/config.go

    	// Values are from tls package constants (https://golang.org/pkg/crypto/tls/#pkg-constants).
    	MinTLSVersion uint16
    
    	// CipherSuites optionally overrides the list of allowed cipher suites for the server.
    	// Values are from tls package constants (https://golang.org/pkg/crypto/tls/#pkg-constants).
    	CipherSuites []uint16
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 47.7K bytes
    - Viewed (0)
  10. pkg/config/validation/validation.go

    	if len(invalidCiphers) > 0 {
    		v = AppendWarningf(v, "ignoring invalid cipher suites: %v", sets.SortedList(invalidCiphers))
    	}
    
    	if len(duplicateCiphers) > 0 {
    		v = AppendWarningf(v, "ignoring duplicate cipher suites: %v", sets.SortedList(duplicateCiphers))
    	}
    
    	if tls.Mode == networking.ServerTLSSettings_ISTIO_MUTUAL {
    		// ISTIO_MUTUAL TLS mode uses either SDS or default certificate mount paths
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
Back to top