Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for boringssl (0.09 sec)

  1. src/crypto/internal/boring/rsa.go

    	}
    
    	// A salt length of -2 is valid in BoringSSL, but not in crypto/rsa, so reject
    	// it, and lengths < -2, before we convert to the BoringSSL sentinel values.
    	if saltLen <= -2 {
    		return nil, invalidSaltLenErr
    	}
    
    	// BoringSSL uses sentinel salt length values like we do, but the values don't
    	// fully match what we use. We both use -1 for salt length equal to hash length,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 23:38:03 UTC 2024
    - 12K bytes
    - Viewed (0)
  2. src/crypto/tls/bogo_shim_test.go

    	} else {
    		const boringsslModVer = "v0.0.0-20240523173554-273a920f84e8"
    		output, err := exec.Command("go", "mod", "download", "-json", "boringssl.googlesource.com/boringssl.git@"+boringsslModVer).CombinedOutput()
    		if err != nil {
    			t.Fatalf("failed to download boringssl: %s", err)
    		}
    		var j struct {
    			Dir string
    		}
    		if err := json.Unmarshal(output, &j); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:25:39 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/experimental/tac/py_wrapper/BUILD

        pytype_srcs = [
            "_pywrap_tac_wrapper.pyi",
        ],
        static_deps = [
            "@arm_neon_2_x86_sse//:__subpackages__",
            "@bazel_tools//:__subpackages__",
            "@boringssl//:__subpackages__",
            "@clog//:__subpackages__",
            "@com_github_cares_cares//:__subpackages__",
            "@com_github_googlecloudplatform_tensorflow_gcp_tools//:__subpackages__",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 18:00:18 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  4. pkg/config/security/security.go

    	"AES128-SHA",
    	"AES256-SHA",
    	"DES-CBC3-SHA",
    )
    
    // ValidECDHCurves contains a list of all ecdh curves supported in MeshConfig.TlsDefaults.ecdhCurves
    // Source:
    // https://github.com/google/boringssl/blob/45cf810dbdbd767f09f8cb0b0fcccd342c39041f/src/ssl/ssl_key_share.cc#L285-L293
    var ValidECDHCurves = sets.New(
    	"P-224",
    	"P-256",
    	"P-521",
    	"P-384",
    	"X25519",
    	"X25519Kyber768Draft00",
    )
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 07 04:43:34 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  5. src/crypto/tls/bogo_config.json

    {
        "DisabledTests": {
            "*-Async": "We don't support boringssl concept of async",
    
            "TLS-ECH-Client-Reject-NoClientCertificate-TLS12": "We won't attempt to negotiate 1.2 if ECH is enabled",
            "TLS-ECH-Client-Reject-TLS12": "We won't attempt to negotiate 1.2 if ECH is enabled",
            "TLS-ECH-Client-TLS12-RejectRetryConfigs": "We won't attempt to negotiate 1.2 if ECH is enabled",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 15:52:42 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  6. configure.py

    
    def set_system_libs_flag(environ_cp):
      """Set system libs flags."""
      syslibs = environ_cp.get('TF_SYSTEM_LIBS', '')
    
      if is_s390x() and 'boringssl' not in syslibs:
        syslibs = 'boringssl' + (', ' + syslibs if syslibs else '')
    
      if syslibs:
        if ',' in syslibs:
          syslibs = ','.join(sorted(syslibs.split(',')))
        else:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 04:32:44 UTC 2024
    - 53.8K bytes
    - Viewed (1)
  7. tensorflow/BUILD

        "@nsync//:__subpackages__",
        "@png//:__subpackages__",
        "@sobol_data//:__subpackages__",
        "@stablehlo//:__subpackages__",
        "@tf_runtime//:__subpackages__",
        "@bazel_tools//:__subpackages__",
        "@boringssl//:__subpackages__",
        "@com_github_cares_cares//:__subpackages__",
        "@com_github_googlecloudplatform_tensorflow_gcp_tools//:__subpackages__",
        "@com_github_grpc_grpc//:__subpackages__",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 16:51:59 UTC 2024
    - 53.5K bytes
    - Viewed (0)
  8. src/crypto/tls/handshake_client.go

    		_, err = io.ReadFull(c.config.rand(), hello.random)
    		if err != nil {
    			return errors.New("tls: short read from Rand: " + err.Error())
    		}
    
    		// NOTE: we don't do PSK GREASE, in line with boringssl, it's meant to
    		// work around _possibly_ broken middleboxes, but there is little-to-no
    		// evidence that this is actually a problem.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 38.6K bytes
    - Viewed (0)
Back to top