Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for BoringSSL (0.22 sec)

  1. docs/security/security_providers.md

    | [Corretto]       | ✅      | ✅           | [OpenSSL]       | Amazon's high-performance provider. [Tracking bug.][bug5592] |
    
    All providers support HTTP/1.1 and TLSv1.2.
    
    
    [BoringSSL]: https://boringssl.googlesource.com/boringssl/
    [Bouncy Castle]: https://www.bouncycastle.org/java.html
    [Conscrypt]: https://www.conscrypt.org/
    [Corretto]: https://github.com/corretto/amazon-corretto-crypto-provider
    [GraalVM]: https://www.graalvm.org/
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Sun Feb 06 02:19:09 GMT 2022
    - 1.7K bytes
    - Viewed (0)
  2. istioctl/pkg/writer/envoy/configdump/testdata/bootstrapdump.json

                            "build.type": "RELEASE",
                            "revision.sha": "436f365a8007cd8a13a9f1321e7cce94bcc8883e",
                            "revision.status": "Clean",
                            "ssl.version": "BoringSSL"
                        }
                }
            }
        }
    Json
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Thu May 05 11:02:00 GMT 2022
    - 739 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/).
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Sat Dec 24 00:16:30 GMT 2022
    - 10.5K bytes
    - Viewed (0)
  4. README.fips.md

    # MinIO FIPS Builds
    
    MinIO creates FIPS builds using a patched version of the Go compiler (that uses BoringCrypto, from BoringSSL, which is [FIPS 140-2 validated](https://csrc.nist.gov/csrc/media/projects/cryptographic-module-validation-program/documents/security-policies/140sp2964.pdf)) published by the Golang Team [here](https://github.com/golang/go/tree/dev.boringcrypto/misc/boring).
    
    Plain Text
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Sun Jul 17 15:43:14 GMT 2022
    - 869 bytes
    - Viewed (0)
  5. istioctl/pkg/writer/envoy/configdump/testdata/configdump.json

                "metadata": {
                  "build.type": "RELEASE",
                  "revision.sha": "436f365a8007cd8a13a9f1321e7cce94bcc8883e",
                  "revision.status": "Clean",
                  "ssl.version": "BoringSSL"
                }
              }
            }
          }
        }
      ]
    Json
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Tue Jun 15 05:44:44 GMT 2021
    - 742 bytes
    - Viewed (0)
  6. istioctl/pkg/writer/envoy/configdump/testdata/versionsummary.txt

    Istio Version:       1.10.0
    Istio Proxy Version: 436f365a8007cd8a13a9f1321e7cce94bcc8883e
    Plain Text
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Tue Jun 15 05:44:44 GMT 2021
    - 142 bytes
    - Viewed (0)
  7. README.md

    security.
    
    OkHttp uses your platform's built-in TLS implementation. On Java platforms OkHttp also supports
    [Conscrypt][conscrypt], which integrates [BoringSSL](https://github.com/google/boringssl) with Java. OkHttp will use Conscrypt if it is
    the first security provider:
    
    ```java
    Security.insertProviderAt(Conscrypt.newProvider(), 1);
    ```
    
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Wed Dec 20 23:27:07 GMT 2023
    - 6.2K bytes
    - Viewed (0)
  8. 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:
    Python
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Mon Apr 15 18:25:36 GMT 2024
    - 53.8K bytes
    - Viewed (0)
  9. istioctl/pkg/proxyconfig/testdata/config_dump.json

                  "build.type": "RELEASE",
                  "build.label": "dev",
                  "revision.sha": "ee85c5f28702f00621aed895915fca565796b9e4",
                  "revision.status": "Clean",
                  "ssl.version": "BoringSSL"
                }
              }
            }
          },
          "last_updated": "2023-12-26T05:57:09.894Z"
        },
        {
          "@type": "type.googleapis.com/envoy.admin.v3.ClustersConfigDump",
    Json
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Wed Jan 03 23:08:06 GMT 2024
    - 54.8K bytes
    - Viewed (1)
  10. docs/changelogs/changelog_3x.md

        interval of 30 seconds is reasonable for most use cases.
    
     *  **OkHttp now supports [Conscrypt][conscrypt].** Conscrypt is a Java Security
        Provider that integrates BoringSSL into the Java platform. Conscrypt
        supports more cipher suites than the JVM’s default provider and may also
        execute more efficiently.
    
        To use it, first register a [Conscrypt dependency][conscrypt_dependency] in
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Sun Feb 06 14:55:54 GMT 2022
    - 50.8K bytes
    - Viewed (0)
Back to top