Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for boringssl (0.21 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. docs/features/https.md

    HTTPS
    =====
    
    OkHttp attempts to balance two competing concerns:
    
     * **Connectivity** to as many hosts as possible. That includes advanced hosts that run the latest versions of [boringssl](https://boringssl.googlesource.com/boringssl/) and less out of date hosts running older versions of [OpenSSL](https://www.openssl.org/).
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Dec 24 00:16:30 UTC 2022
    - 10.5K bytes
    - Viewed (0)
  4. 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)
  5. 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