/*
* CDDL HEADER START
*
* The contents of this file are subject to the terms of the
* Common Development and Distribution License, Version 1.0 only
* (the "License"). You may not use this file except in compliance
* with the License.
*
* You can obtain a copy of the license at
* See the License for the specific language governing permissions
* and limitations under the License.
*
* When distributing Covered Code, include this CDDL HEADER in each
* file and include the License file at
* trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable,
* add the following below this CDDL HEADER, with the fields enclosed
* by brackets "[]" replaced with your own identifying information:
* Portions Copyright [yyyy] [name of copyright owner]
*
* CDDL HEADER END
*
*
* Copyright 2008-2009 Sun Microsystems, Inc.
* Portions Copyright 2009 Parametric Technology Corporation (PTC)
*/
/**
* This class is in charge of checking whether the certificates that are
* presented are trusted or not.
* This implementation tries to check also that the subject DN of the
* certificate corresponds to the host passed using the setHostName method.
*
* The constructor tries to use a default TrustManager from the system and if
* it cannot be retrieved this class will only accept the certificates
* explicitly accepted by the user (and specified by calling acceptCertificate).
*
* NOTE: this class is not aimed to be used when we have connections in paralel.
*/
{
/**
* The default keyManager.
*/
/**
* The default constructor.
* @param keystore The keystore to use for this keymanager.
* @param password The keystore password to use for this keymanager.
*/
{
//provider.
userSpecifiedAlgo = "IbmX509";
userSpecifiedProvider = "IBMJSSE2";
// Have some fallbacks to choose the provider and algorith of the key
// manager. First see if the user wanted to use something specific,
// then try with the SunJSSE provider and SunX509 algorithm. Finally,
// fallback to the default algorithm of the JVM.
{
"SunJSSE",
null,
};
String[] preferredAlgo =
{
"SunX509",
"SunX509",
};
{
{
continue;
}
try
{
{
}
else
{
}
/*
* Iterate over the returned keymanagers, look for an instance
* of X509KeyManager. If found, use that as our "default" key
* manager.
*/
{
if (kms[i] instanceof X509KeyManager)
{
break;
}
}
}
catch (NoSuchAlgorithmException e)
{
// Nothing to do. Maybe we should avoid this and be strict, but we are
// in a best effor mode.
}
catch (KeyStoreException e)
{
// Nothing to do. Maybe we should avoid this and be strict, but we are
// in a best effor mode..
}
catch (UnrecoverableKeyException e)
{
// Nothing to do. Maybe we should avoid this and be strict, but we are
// in a best effor mode.
}
catch (NoSuchProviderException e)
{
// Nothing to do. Maybe we should avoid this and be strict, but we are
// in a best effor mode.
}
}
}
/**
* Choose an alias to authenticate the client side of a secure
* socket given the public key type and the list of certificate
* issuer authorities recognized by the peer (if any).
*
* @param keyType
* the key algorithm type name(s), ordered with the
* most-preferred key type first.
* @param issuers
* the list of acceptable CA issuer subject names or null
* if it does not matter which issuers are used.
* @param socket
* the socket to be used for this connection. This
* parameter can be null, in which case this method will
* return the most generic alias to use.
* @return the alias name for the desired key, or null if there are
* no matches.
*/
{
if (keyManager != null)
{
}
else
{
return null ;
}
}
/**
* Choose an alias to authenticate the client side of a secure
* socket given the public key type and the list of certificate
* issuer authorities recognized by the peer (if any).
*
* @param keyType
* the key algorithm type name(s), ordered with the
* most-preferred key type first.
* @param issuers
* the list of acceptable CA issuer subject names or null
* if it does not matter which issuers are used.
* @param socket
* the socket to be used for this connection. This
* parameter can be null, in which case this method will
* return the most generic alias to use.
* @return the alias name for the desired key, or null if there are
* no matches.
*/
{
if (keyManager != null)
{
}
else
{
return null;
}
}
/**
* Returns the certificate chain associated with the given alias.
*
* @param alias
* the alias name
* @return the certificate chain (ordered with the user's
* certificate first and the root certificate authority
* last), or null if the alias can't be found.
*/
{
if (keyManager != null)
{
}
else
{
return null;
}
}
/**
* Get the matching aliases for authenticating the server side of a
* secure socket given the public key type and the list of
* certificate issuer authorities recognized by the peer (if any).
*
* @param keyType
* the key algorithm type name
* @param issuers
* the list of acceptable CA issuer subject names or null
* if it does not matter which issuers are used.
* @return an array of the matching alias names, or null if there
* were no matches.
*/
{
if (keyManager != null)
{
}
else
{
return null;
}
}
/**
* Returns the key associated with the given alias.
*
* @param alias
* the alias name
* @return the requested key, or null if the alias can't be found.
*/
{
if (keyManager != null)
{
}
else
{
return null;
}
}
/**
* Get the matching aliases for authenticating the server side of a
* secure socket given the public key type and the list of
* certificate issuer authorities recognized by the peer (if any).
*
* @param keyType
* the key algorithm type name
* @param issuers
* the list of acceptable CA issuer subject names or null
* if it does not matter which issuers are used.
* @return an array of the matching alias names, or null if there
* were no matches.
*/
{
if (keyManager != null)
{
}
else
{
return null;
}
}
}