Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for keyStoreType (0.24 seconds)

  1. okhttp-tls/src/main/kotlin/okhttp3/tls/internal/TlsUtil.kt

      /** Returns a trust manager that trusts `trustedCertificates`. */
      @JvmStatic @IgnoreJRERequirement
      fun newTrustManager(
        keyStoreType: String?,
        trustedCertificates: List<X509Certificate>,
        insecureHosts: List<String>,
      ): X509TrustManager {
        val trustStore = newEmptyKeyStore(keyStoreType)
        for (i in trustedCertificates.indices) {
          trustStore.setCertificateEntry("cert_$i", trustedCertificates[i])
        }
    
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Wed Mar 19 19:25:20 GMT 2025
    - 4.3K bytes
    - Click Count (1)
  2. build-tools-internal/src/main/groovy/elasticsearch.fips.gradle

              systemProperty 'javax.net.ssl.trustStorePassword', 'password'
              systemProperty 'javax.net.ssl.keyStorePassword', 'password'
              systemProperty 'javax.net.ssl.keyStoreType', 'BCFKS'
              systemProperty 'org.bouncycastle.fips.approved_only', 'true'
              // Setting security explicitly off as a default behavior for the tests which normally run
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Sep 21 11:03:02 GMT 2021
    - 4.8K bytes
    - Click Count (0)
Back to Top