Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for Organization (0.32 sec)

  1. okhttp-tls/README.md

    certificate.
    
    The trusted roots don't need to be the same for client and server when using client authentication.
    Clients might rely on the platform certificates and servers might use a private
    organization-specific certificate authority.
    
    By default `HeldCertificate` instances expire after 24 hours. Use `duration()` to adjust.
    
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Sun Dec 17 15:34:10 GMT 2023
    - 9.1K bytes
    - Viewed (1)
  2. okhttp-tls/src/main/kotlin/okhttp3/tls/HandshakeCertificates.kt

     *    root certificates that is distributed with the HTTP client or its platform. It may be
     *    augmented by certificates private to an organization or service.
     *
     * ### Client Authentication
     *
     * This is authentication of the client by the server during the TLS handshake. Client
     * authentication is optional.
     *
     * To perform client authentication:
     *
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Mon Jan 08 01:13:22 GMT 2024
    - 8.5K bytes
    - Viewed (1)
  3. samples/guide/src/main/java/okhttp3/recipes/CustomTrust.java

      // sufficient to connect to most HTTPS sites including https://godaddy.com and https://visa.com.
      // Typically developers will need to get a PEM file from their organization's TLS administrator.
      final X509Certificate comodoRsaCertificationAuthority = Certificates.decodeCertificatePem(""
          + "-----BEGIN CERTIFICATE-----\n"
    Java
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Thu Aug 12 07:26:27 GMT 2021
    - 9.3K bytes
    - Viewed (2)
  4. samples/guide/src/main/java/okhttp3/recipes/kt/CustomTrust.kt

      // sufficient to connect to most HTTPS sites including https://godaddy.com and https://visa.com.
      // Typically developers will need to get a PEM file from their organization's TLS administrator.
      val comodoRsaCertificationAuthority =
        """
        -----BEGIN CERTIFICATE-----
        MIIF2DCCA8CgAwIBAgIQTKr5yttjb+Af907YWwOGnTANBgkqhkiG9w0BAQwFADCB
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Mon Jan 08 01:13:22 GMT 2024
    - 8.8K bytes
    - Viewed (5)
  5. okhttp-tls/src/test/java/okhttp3/tls/internal/der/DerCertificatesTest.kt

                      ),
                    ),
                    listOf(
                      AttributeTypeAndValue(
                        type = businessCategory,
                        value = "Private Organization",
                      ),
                    ),
                    listOf(
                      AttributeTypeAndValue(
                        type = serialNumber,
                        value = "4699855",
                      ),
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Mon Jan 08 01:13:22 GMT 2024
    - 43.9K bytes
    - Viewed (0)
  6. okhttp/src/test/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat

    cbre
    
    // cbs : 2015-08-06 CBS Domains Inc.
    cbs
    
    // center : 2013-11-07 Binky Moon, LLC
    center
    
    // ceo : 2013-11-07 CEOTLD Pty Ltd
    ceo
    
    // cern : 2014-06-05 European Organization for Nuclear Research ("CERN")
    cern
    
    // cfa : 2014-08-28 CFA Institute
    cfa
    
    // cfd : 2014-12-11 ShortDot SA
    cfd
    
    // chanel : 2015-04-09 Chanel International B.V.
    chanel
    
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Wed Dec 20 23:27:07 GMT 2023
    - 240.3K bytes
    - Viewed (3)
  7. okhttp-tls/src/main/kotlin/okhttp3/tls/HeldCertificate.kt

     * chain. The chain terminates in a self-signed "root" certificate. Signing certificates in the
     * middle of the chain are called "intermediates". Organizations that offer certificate signing are
     * called certificate authorities (CAs).
     *
     * Browsers and other HTTP clients need a set of trusted root certificates to authenticate their
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Mon Jan 08 01:13:22 GMT 2024
    - 21.6K bytes
    - Viewed (1)
Back to top