org.bouncycastle.jce.provider.X509StoreAttrCertCollection Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bcprov-ext-debug-jdk15on Show documentation
Show all versions of bcprov-ext-debug-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.
package org.bouncycastle.jce.provider;
import java.util.Collection;
import org.bouncycastle.util.CollectionStore;
import org.bouncycastle.util.Selector;
import org.bouncycastle.x509.X509CollectionStoreParameters;
import org.bouncycastle.x509.X509StoreParameters;
import org.bouncycastle.x509.X509StoreSpi;
public class X509StoreAttrCertCollection
extends X509StoreSpi
{
private CollectionStore _store;
public X509StoreAttrCertCollection()
{
}
public void engineInit(X509StoreParameters params)
{
if (!(params instanceof X509CollectionStoreParameters))
{
throw new IllegalArgumentException(params.toString());
}
_store = new CollectionStore(((X509CollectionStoreParameters)params).getCollection());
}
public Collection engineGetMatches(Selector selector)
{
return _store.getMatches(selector);
}
}