org.bouncycastle.jce.provider.X509StoreLDAPCertPairs Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bcprov-ext-jdk15on Show documentation
Show all versions of bcprov-ext-jdk15on Show documentation
The Bouncy Castle Crypto package is a Java implementation of cryptographic algorithms. This jar contains JCE provider and lightweight API for the Bouncy Castle Cryptography APIs for JDK 1.5 to JDK 1.8. Note: this package includes the NTRU encryption algorithms.
The newest version!
package org.bouncycastle.jce.provider;
import java.util.Collection;
import java.util.Collections;
import java.util.HashSet;
import java.util.Set;
import org.bouncycastle.jce.X509LDAPCertStoreParameters;
import org.bouncycastle.util.Selector;
import org.bouncycastle.util.StoreException;
import org.bouncycastle.x509.X509CertPairStoreSelector;
import org.bouncycastle.x509.X509StoreParameters;
import org.bouncycastle.x509.X509StoreSpi;
import org.bouncycastle.x509.util.LDAPStoreHelper;
/**
* A SPI implementation of Bouncy Castle X509Store
for getting
* cross certificates pairs from an LDAP directory.
*
* @see org.bouncycastle.x509.X509Store
*/
public class X509StoreLDAPCertPairs extends X509StoreSpi
{
private LDAPStoreHelper helper;
public X509StoreLDAPCertPairs()
{
}
/**
* Initializes this LDAP cross certificate pair store implementation.
*
* @param parameters X509LDAPCertStoreParameters
.
* @throws IllegalArgumentException if params
is not an instance of
* X509LDAPCertStoreParameters
.
*/
public void engineInit(X509StoreParameters parameters)
{
if (!(parameters instanceof X509LDAPCertStoreParameters))
{
throw new IllegalArgumentException(
"Initialization parameters must be an instance of "
+ X509LDAPCertStoreParameters.class.getName() + ".");
}
helper = new LDAPStoreHelper((X509LDAPCertStoreParameters)parameters);
}
/**
* Returns a collection of matching cross certificate pairs from the LDAP
* location.
*
* The selector must be a of type X509CertPairStoreSelector
.
* If it is not an empty collection is returned.
*
*
* The subject should be a reasonable criteria for a selector.
*
* @param selector The selector to use for finding.
* @return A collection with the matches.
* @throws StoreException if an exception occurs while searching.
*/
public Collection engineGetMatches(Selector selector) throws StoreException
{
if (!(selector instanceof X509CertPairStoreSelector))
{
return Collections.EMPTY_SET;
}
X509CertPairStoreSelector xselector = (X509CertPairStoreSelector)selector;
Set set = new HashSet();
set.addAll(helper.getCrossCertificatePairs(xselector));
return set;
}
}