Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for authorities (0.17 sec)

  1. src/main/java/org/codelibs/fess/es/client/CrawlerEngineClient.java

                builder.put(Constants.FESEN_PASSWORD, password);
            }
            final String authorities = fessConfig.getFesenHttpSslCertificateAuthorities();
            if (StringUtil.isNotBlank(authorities)) {
                builder.put("http.ssl.certificate_authorities", authorities);
            }
            return new HttpClient(builder.build(), null);
        }
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 2.3K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/helper/CurlHelper.java

            final String authorities = fessConfig.getFesenHttpSslCertificateAuthorities();
            if (StringUtil.isNotBlank(authorities)) {
                if (logger.isDebugEnabled()) {
                    logger.debug("Loading certificate_authorities: {}", authorities);
                }
                try (final InputStream in = new FileInputStream(authorities)) {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 4.8K bytes
    - Viewed (0)
  3. okhttp-tls/README.md

    signs the other party's chain.
    
    Well-Known Certificate Authorities
    ----------------------------------
    
    In these examples we've prearranged which root certificates to trust. But for regular HTTPS on the
    Internet this set of trusted root certificates is usually provided by default by the host platform.
    Such a set typically includes many root certificates from well-known certificate authorities like
    Entrust and Verisign.
    
    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)
  4. samples/guide/src/main/java/okhttp3/recipes/CustomCipherSuites.java

        sslContext.init(null, new TrustManager[] { trustManager }, null);
    
        return sslContext.getSocketFactory();
      }
    
      /** Returns a trust manager that trusts the VM's default certificate authorities. */
      private X509TrustManager defaultTrustManager() throws GeneralSecurityException {
        TrustManagerFactory trustManagerFactory = TrustManagerFactory.getInstance(
            TrustManagerFactory.getDefaultAlgorithm());
    Java
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Thu Mar 14 21:57:42 GMT 2019
    - 6.5K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb1/dcerpc/rpc.java

                if (identifier_authority == null) {
                    if (_identifier_authoritys < 0 || _identifier_authoritys > 0xFFFF) throw new NdrException( NdrException.INVALID_CONFORMANCE );
                    identifier_authority = new byte[_identifier_authoritys];
                }
                _src = _src.derive(_identifier_authorityi);
                for (int _i = 0; _i < _identifier_authoritys; _i++) {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 8K bytes
    - Viewed (0)
  6. src/main/java/jcifs/dcerpc/rpc.java

                if ( this.identifier_authority == null ) {
                    if ( _identifier_authoritys < 0 || _identifier_authoritys > 0xFFFF )
                        throw new NdrException(NdrException.INVALID_CONFORMANCE);
                    this.identifier_authority = new byte[_identifier_authoritys];
                }
                _src = _src.derive(_identifier_authorityi);
                for ( int _i = 0; _i < _identifier_authoritys; _i++ ) {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 20:40:13 GMT 2019
    - 8.8K bytes
    - Viewed (0)
Back to top