Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 86 for tlsv3 (0.03 sec)

  1. pilot/pkg/networking/core/cluster_tls.go

    					},
    				}
    			}
    		}
    	}
    }
    
    func defaultUpstreamCommonTLSContext() *tlsv3.CommonTlsContext {
    	return &tlsv3.CommonTlsContext{
    		TlsParams: &tlsv3.TlsParameters{
    			// if not specified, envoy use TLSv1_2 as default for client.
    			TlsMaximumProtocolVersion: tlsv3.TlsParameters_TLSv1_3,
    			TlsMinimumProtocolVersion: tlsv3.TlsParameters_TLSv1_2,
    		},
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 19:09:43 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  2. security/pkg/nodeagent/sds/sdsservice_test.go

    package sds
    
    import (
    	"context"
    	"fmt"
    	"net"
    	"os"
    	"strings"
    	"testing"
    
    	cryptomb "github.com/envoyproxy/go-control-plane/contrib/envoy/extensions/private_key_providers/cryptomb/v3alpha"
    	tlsv3 "github.com/envoyproxy/go-control-plane/envoy/extensions/transport_sockets/tls/v3"
    	discovery "github.com/envoyproxy/go-control-plane/envoy/service/discovery/v3"
    	"github.com/google/go-cmp/cmp"
    	"google.golang.org/grpc"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 17 20:12:58 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  3. pilot/pkg/security/authn/policy_applier.go

    	Port uint32
    	// Mode is the mTLS  mode to use
    	Mode model.MutualTLSMode
    	// TCP describes the tls context to use for TCP filter chains
    	TCP *tlsv3.DownstreamTlsContext
    	// HTTP describes the tls context to use for HTTP filter chains
    	HTTP *tlsv3.DownstreamTlsContext
    }
    
    var authnLog = log.RegisterScope("authn", "authn debugging")
    
    // Implementation of authn.PolicyApplier with v1beta1 API.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 09:47:21 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  4. docs/security/tls_configuration_history.md

    ------------------------
    
    _2019-02-04_
    
    Remove TLSv1.1 and TLSv1 from MODERN_TLS. Change COMPATIBLE_TLS to support all TLS versions.
    
    ##### RESTRICTED_TLS versions
    
    * TLSv1.3
    * TLSv1.2
    
    ##### MODERN_TLS versions
    
    * TLSv1.3
    * TLSv1.2
    * **REMOVED:** ~~TLSv1.1~~
    * **REMOVED:** ~~TLSv1~~
    
    ##### COMPATIBLE_TLS versions
    
    * **NEW:** TLSv1.3
    * **NEW:** TLSv1.2
    * **NEW:** TLSv1.1
    * TLSv1
    
    [OkHttp 3.12][OkHttp312]
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 16:35:36 UTC 2022
    - 9K bytes
    - Viewed (0)
  5. okhttp/src/test/java/okhttp3/TestTls13Request.kt

      // https://github.com/tlswg/tls13-spec/wiki/Implementations
      val urls =
        listOf(
          "https://enabled.tls13.com",
          "https://www.howsmyssl.com/a/check",
          "https://tls13.cloudflare.com",
          "https://www.allizom.org/robots.txt",
          "https://tls13.crypto.mozilla.org/",
          "https://tls.ctf.network/robots.txt",
          "https://rustls.jbp.io/",
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 3K bytes
    - Viewed (0)
  6. okhttp/src/main/kotlin/okhttp3/TlsVersion.kt

     * [javax.net.ssl.SSLSocket.setEnabledProtocols].
     */
    enum class TlsVersion(
      @get:JvmName("javaName") val javaName: String,
    ) {
      TLS_1_3("TLSv1.3"), // 2016.
      TLS_1_2("TLSv1.2"), // 2008.
      TLS_1_1("TLSv1.1"), // 2006.
      TLS_1_0("TLSv1"), // 1999.
      SSL_3_0("SSLv3"), // 1996.
      ;
    
      @JvmName("-deprecated_javaName")
      @Deprecated(
        message = "moved to val",
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  7. src/crypto/tls/bogo_config.json

            "TrailingMessageData-TLS13-ServerCertificate-TLS": "TODO: first pass, this should be fixed",
            "ResumeTLS12SessionID-TLS13": "TODO: first pass, this should be fixed",
            "SkipEarlyData-TLS13": "TODO: first pass, this should be fixed",
            "DuplicateKeyShares-TLS13": "TODO: first pass, this should be fixed",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 15:52:42 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  8. okhttp/src/test/java/okhttp3/JSSETest.kt

          PlatformVersion.majorVersion == 8 ->
            assertThat(s.enabledProtocols.toList()).contains(
              "TLSv1.2",
            )
          else ->
            assertThat(s.enabledProtocols.toList()).containsExactly(
              "TLSv1.3",
              "TLSv1.2",
              "TLSv1.1",
              "TLSv1",
            )
        }
      }
    
      @Test
      @Disabled
      fun testFacebook() {
        val sessionIds = mutableListOf<String>()
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jan 20 10:30:28 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  9. okhttp/src/test/java/okhttp3/CipherSuiteTest.kt

          socket.enabledCipherSuites,
        )
      }
    
      @Test
      fun applyIntersectionToProtocolVersion() {
        val socket = FakeSslSocket()
        socket.enabledProtocols = arrayOf("TLSv1", "TLSv1.1", "TLSv1.2")
        socket.supportedCipherSuites = arrayOf("TLS_A")
        socket.enabledCipherSuites = arrayOf("TLS_A")
        val connectionSpec =
          ConnectionSpec.Builder(true)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  10. src/crypto/tls/testdata/Server-TLSv13-ClientAuthRequestedAndECDSAGiven

    Filippo Valsorda <******@****.***> 1684936196 +0200
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 25 00:14:50 UTC 2023
    - 13.7K bytes
    - Viewed (0)
Back to top