Class LibPQFactory

All Implemented Interfaces:
HostnameVerifier

@Deprecated public class LibPQFactory extends LibPQFactory implements HostnameVerifier
Deprecated.
  • Constructor Details

    • LibPQFactory

      @Deprecated public LibPQFactory(Properties info) throws PSQLException
      Deprecated.
      Parameters:
      info - the connection parameters The following parameters are used: sslmode,sslcert,sslkey,sslrootcert,sslhostnameverifier,sslpasswordcallback,sslpassword
      Throws:
      PSQLException - if security error appears when initializing factory
  • Method Details

    • verifyHostName

      @Deprecated public static boolean verifyHostName(String hostname, String pattern)
      Deprecated.
      Verifies if given hostname matches pattern.
      Parameters:
      hostname - input hostname
      pattern - domain name pattern
      Returns:
      true when domain matches pattern
    • verify

      @Deprecated public boolean verify(String hostname, SSLSession session)
      Deprecated.
      use PgjdbcHostnameVerifier
      Verifies the server certificate according to the libpq rules. The cn attribute of the certificate is matched against the hostname. If the cn attribute starts with an asterisk (*), it will be treated as a wildcard, and will match all characters except a dot (.). This means the certificate will not match subdomains. If the connection is made using an IP address instead of a hostname, the IP address will be matched (without doing any DNS lookups).
      Specified by:
      verify in interface HostnameVerifier
      Parameters:
      hostname - Hostname or IP address of the server.
      session - The SSL session.
      Returns:
      true if the certificate belongs to the server, false otherwise.
      See Also: