Merged 3.06 changes from internal cvs server

This commit is contained in:
chuckb%netscape.com 1998-10-19 06:15:58 +00:00
parent f020db688c
commit 587ed0958d
3 changed files with 113 additions and 20 deletions

View File

@ -59,7 +59,11 @@ public class SASLMechanismFactory {
for (int i = 0; i < m.length; i++) { for (int i = 0; i < m.length; i++) {
/* Check if the signature is right: String */ /* Check if the signature is right: String */
Class[] params = m[i].getParameterTypes(); Class[] params = m[i].getParameterTypes();
if ((params.length == 1) && if (params.length == 0) {
driver =
(SASLClientMechanismDriver)(m[i].newInstance(null));
return driver;
} else if ((params.length == 1) &&
(params[0].getName().equals("java.lang.String"))) { (params[0].getName().equals("java.lang.String"))) {
Object[] args = new Object[1]; Object[] args = new Object[1];
args[0] = mechanism; args[0] = mechanism;

View File

@ -23,14 +23,14 @@ import netscape.ldap.*;
/** /**
* Creates an SSL socket connection to an LDAP Server. This class * Creates an SSL socket connection to an LDAP Server. This class
* implements the <CODE>LDAPSocketFactory</CODE> interface. * implements the <CODE>LDAPSSLSocketFactoryExt</CODE> interface.
* <P> * <P>
* *
* To construct an object of this class, you need to specify the * To construct an object of this class, you need to specify the
* name of a class that implements the <CODE>javax.net.ssl.SSLSocket</CODE> * name of a class that implements the <CODE>javax.net.ssl.SSLSocket</CODE>
* interface. If you do not specify a class name, the class * interface. If you do not specify a class name, the class
* <CODE>netscape.net.SSLSocket</CODE> is used by default. This * <CODE>netscape.net.SSLSocket</CODE> is used by default. This
* class is included with Netscape Communicator 4.05. * class is included with Netscape Communicator 4.05 and up.
* <P> * <P>
* *
* If you are using a Java VM that provides certificate database * If you are using a Java VM that provides certificate database
@ -39,33 +39,52 @@ import netscape.ldap.*;
* <P> * <P>
* *
* @version 1.0 * @version 1.0
* @see LDAPSocketFactory * @see LDAPSSLSocketFactoryExt
* @see LDAPConnection#LDAPConnection(netscape.ldap.LDAPSocketFactory) * @see LDAPConnection#LDAPConnection(netscape.ldap.LDAPSSLSocketFactoryExt)
*/ */
public class LDAPSSLSocketFactory implements LDAPSocketFactory { public class LDAPSSLSocketFactory implements LDAPSSLSocketFactoryExt {
/** /**
* Indicates if client authentication is on. * Indicates if client authentication is on.
*/ */
private boolean m_isClientAuth = false; private boolean m_clientAuth = false;
/** /**
* Name of class implementing SSLSocket. * Name of class implementing SSLSocket.
*/ */
private String m_packageName = "netscape.net.SSLSocket"; private String m_packageName = "netscape.net.SSLSocket";
/** /**
* The cipher suites * The cipher suites
*/ */
private Object m_cipherSuites = null; private Object m_cipherSuites = null;
/**
* The Ldap connection
*/
private LDAPConnection m_connection = null;
/** /**
* Constructs an <CODE>LDAPSSLSocketFactory</CODE> object using * Constructs an <CODE>LDAPSSLSocketFactory</CODE> object using
* the default SSL socket implementation, * the default SSL socket implementation,
* <CODE>netscape.net.SSLSocket</CODE>. (This class is provided * <CODE>netscape.net.SSLSocket</CODE>. (This class is provided
* with Netscape Communicator 4.05.) * with Netscape Communicator 4.05 and higher.)
*/ */
public LDAPSSLSocketFactory() { public LDAPSSLSocketFactory() {
} }
/**
* Constructs an <CODE>LDAPSSLSocketFactory</CODE> object using
* the default SSL socket implementation,
* <CODE>netscape.net.SSLSocket</CODE>. (This class is provided
* with Netscape Communicator 4.05 and up.)
* @param clientAuth <CODE>true</CODE> if certificate-based client
* authentication is desired. By default, client authentication is
* not used.
*/
public LDAPSSLSocketFactory(boolean clientAuth) {
m_clientAuth = clientAuth;
}
/** /**
* Constructs an <CODE>LDAPSSLSocketFactory</CODE> object using * Constructs an <CODE>LDAPSSLSocketFactory</CODE> object using
* the specified class. The class must implement the interface * the specified class. The class must implement the interface
@ -75,12 +94,47 @@ public class LDAPSSLSocketFactory implements LDAPSocketFactory {
* Pass <code>null</code> for this parameter to use the * Pass <code>null</code> for this parameter to use the
* default SSL socket implementation, * default SSL socket implementation,
* <CODE>netscape.net.SSLSocket</CODE>, which is included with * <CODE>netscape.net.SSLSocket</CODE>, which is included with
* Netscape Communicator 4.05. * Netscape Communicator 4.05 and up.
*/ */
public LDAPSSLSocketFactory(String className) { public LDAPSSLSocketFactory(String className) {
m_packageName = new String(className); m_packageName = new String(className);
} }
/**
* Constructs an <CODE>LDAPSSLSocketFactory</CODE> object using
* the specified class. The class must implement the interface
* <CODE>javax.net.ssl.SSLSocket</CODE>.
* @param className The name of a class implementing
* the <CODE>javax.net.ssl.SSLSocket</CODE> interface.
* Pass <code>null</code> for this parameter to use the
* default SSL socket implementation,
* <CODE>netscape.net.SSLSocket</CODE>, which is included with
* Netscape Communicator 4.05 and up.
* @param clientAuth <CODE>true</CODE> if certificate-based client
* authentication is desired. By default, client authentication is
* not used.
*/
public LDAPSSLSocketFactory(String className, boolean clientAuth) {
m_packageName = new String(className);
m_clientAuth = clientAuth;
}
/**
* The constructor with the specified package for security and the specified
* cipher suites.
* @param className The name of a class implementing the interface
* <CODE>javax.net.ssl.SSLSocket</CODE>
* Pass <code>null</code> for this parameter to use the
* default SSL socket implementation,
* <CODE>netscape.net.SSLSocket</CODE>, which is included with
* Netscape Communicator 4.05 and up.
* @param cipherSuites The cipher suites to use for SSL connections.
*/
public LDAPSSLSocketFactory(String className, Object cipherSuites) {
m_packageName = new String(className);
m_cipherSuites = cipherSuites;
}
/** /**
* The constructor with the specified package for security and the specified * The constructor with the specified package for security and the specified
* cipher suites. * cipher suites.
@ -91,10 +145,15 @@ public class LDAPSSLSocketFactory implements LDAPSocketFactory {
* <CODE>netscape.net.SSLSocket</CODE>, which is included with * <CODE>netscape.net.SSLSocket</CODE>, which is included with
* Netscape Communicator 4.05. * Netscape Communicator 4.05.
* @param cipherSuites The cipher suites to use for SSL connections. * @param cipherSuites The cipher suites to use for SSL connections.
* @param clientAuth <CODE>true</CODE> if certificate-based client
* authentication is desired. By default, client authentication is
* not used.
*/ */
public LDAPSSLSocketFactory(String className, Object cipherSuites) { public LDAPSSLSocketFactory(String className, Object cipherSuites,
boolean clientAuth) {
m_packageName = new String(className); m_packageName = new String(className);
m_cipherSuites = cipherSuites; m_cipherSuites = cipherSuites;
m_clientAuth = clientAuth;
} }
/** /**
@ -105,9 +164,15 @@ public class LDAPSSLSocketFactory implements LDAPSocketFactory {
* Call this method before you call <CODE>makeSocket</CODE>. * Call this method before you call <CODE>makeSocket</CODE>.
* @see netscape.ldap.LDAPSSLSocketFactory#isClientAuth * @see netscape.ldap.LDAPSSLSocketFactory#isClientAuth
* @see netscape.ldap.LDAPSSLSocketFactory#makeSocket * @see netscape.ldap.LDAPSSLSocketFactory#makeSocket
* Note: enableClientAuth() is deprecated. This method is replaced
* by any one of the following constructors:
* <p>
* <CODE>LDAPSSLSocketFactory(boolean)</CODE>
* <CODE>LDAPSSLSocketFactory(java.lang.String, boolean)</CODE>
* <CODE>LDAPSSLSocketFactory(java.lang.String, java.lang.Object, boolean)</CODE>
*/ */
public void enableClientAuth() { public void enableClientAuth() {
m_isClientAuth = true; m_clientAuth = true;
} }
@ -125,6 +190,12 @@ public class LDAPSSLSocketFactory implements LDAPSocketFactory {
* @see netscape.ldap.LDAPSSLSocketFactory#makeSocket * @see netscape.ldap.LDAPSSLSocketFactory#makeSocket
* @exception LDAPException Since this method is not yet implemented, * @exception LDAPException Since this method is not yet implemented,
* calling this method throws an exception. * calling this method throws an exception.
* Note: <CODE>enableClientAuth(java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.lang.String)</CODE> is deprecated.
* This method is replaced by any one of the following constructors:
* <p>
* <CODE>LDAPSSLSocketFactory(boolean)</CODE>
* <CODE>LDAPSSLSocketFactory(java.lang.String, boolean)</CODE>
* <CODE>LDAPSSLSocketFactory(java.lang.String, java.lang.Object, boolean)</CODE>
*/ */
public void enableClientAuth(String certdb, String keydb, String keypwd, public void enableClientAuth(String certdb, String keydb, String keypwd,
String certnickname, String keynickname) throws LDAPException { String certnickname, String keynickname) throws LDAPException {
@ -133,10 +204,10 @@ public class LDAPSSLSocketFactory implements LDAPSocketFactory {
/** /**
* Returns <code>true</code> if client authentication is enabled. * Returns <code>true</code> if client authentication is enabled.
* @see netscape.ldap.LDAPSSLSocketFactory#enableClientAuth * @see netscape.ldap.LDAPSSLSocketFactory
*/ */
public boolean isClientAuth() { public boolean isClientAuth() {
return m_isClientAuth; return m_clientAuth;
} }
/** /**
@ -160,21 +231,20 @@ public class LDAPSSLSocketFactory implements LDAPSocketFactory {
/** /**
* Returns a socket to the LDAP server with the specified * Returns a socket to the LDAP server with the specified
* host name and port number. Before calling this method, * host name and port number.
* call <CODE>enableClientAuth</CODE>.
* @param host The host to connect to * @param host The host to connect to
* @param port The port number * @param port The port number
* @return The socket to the host name and port number. * @return The socket to the host name and port number.
* @exception LDAPException A socket to the specified host and port * @exception LDAPException A socket to the specified host and port
* could not be created. * could not be created.
* @see netscape.ldap.LDAPSSLSocketFactory#enableClientAuth * @see netscape.ldap.LDAPSSLSocketFactory
*/ */
public Socket makeSocket(String host, int port) public Socket makeSocket(String host, int port)
throws LDAPException { throws LDAPException {
Socket s = null; Socket s = null;
if (m_isClientAuth) { if (m_clientAuth) {
try { try {
/* Check if running in Communicator; if so, enable client auth */ /* Check if running in Communicator; if so, enable client auth */
java.lang.reflect.Method m = LDAPCheckComm.getMethod( java.lang.reflect.Method m = LDAPCheckComm.getMethod(

View File

@ -37,7 +37,7 @@ import netscape.ldap.*;
* @see LDAPSocketFactory * @see LDAPSocketFactory
* @see LDAPConnection#LDAPConnection(netscape.ldap.LDAPSocketFactory) * @see LDAPConnection#LDAPConnection(netscape.ldap.LDAPSocketFactory)
*/ */
public class LDAPSSLSocketWrapFactory implements LDAPSocketFactory { public class LDAPSSLSocketWrapFactory implements LDAPSSLSocketFactoryExt {
/** /**
* The constructor with the specified package for security * The constructor with the specified package for security
@ -92,7 +92,7 @@ public class LDAPSSLSocketWrapFactory implements LDAPSocketFactory {
* client authentication is disabled. * client authentication is disabled.
*/ */
public boolean isClientAuth() { public boolean isClientAuth() {
return m_isClientAuth; return m_clientAuth;
} }
/** /**
@ -108,10 +108,29 @@ public class LDAPSSLSocketWrapFactory implements LDAPSocketFactory {
throw new LDAPException("Client Authentication is not implemented yet."); throw new LDAPException("Client Authentication is not implemented yet.");
} }
/**
* Returns the name of the class that implements SSL sockets for this factory.
*
* @return The name of the class that implements SSL sockets for this factory.
*/
public String getSSLSocketImpl() {
return m_packageName;
}
/**
* Returns the suite of ciphers used for SSL connections made through
* sockets created by this factory.
*
* @return The suite of ciphers used.
*/
public Object getCipherSuites() {
return m_cipherSuites;
}
/** /**
* Indicates if client authentication is on. * Indicates if client authentication is on.
*/ */
private boolean m_isClientAuth = false; private boolean m_clientAuth = false;
/** /**
* Name of class implementing SSLSocket. * Name of class implementing SSLSocket.