Uses of Interface
org.bouncycastle.util.Selector
-
Packages that use Selector Package Description org.bouncycastle.jcajce org.bouncycastle.jce.provider org.bouncycastle.util org.bouncycastle.x509 Classes for supporting the generation of X.509 certificates and X.509 attribute certificates. -
-
Uses of Selector in org.bouncycastle.jcajce
Classes in org.bouncycastle.jcajce that implement Selector Modifier and Type Class Description class
PKIXCertStoreSelector<T extends Certificate>
This class is a Selector implementation for certificates.class
PKIXCRLStoreSelector<T extends CRL>
This class is a Selector implementation for X.509 certificate revocation lists.Methods in org.bouncycastle.jcajce with parameters of type Selector Modifier and Type Method Description Collection<T>
PKIXCertStore. getMatches(Selector<T> selector)
Return the matches associated with the passed in selector.Collection<T>
PKIXCRLStore. getMatches(Selector<T> selector)
Return the matches associated with the passed in selector. -
Uses of Selector in org.bouncycastle.jce.provider
Methods in org.bouncycastle.jce.provider with parameters of type Selector Modifier and Type Method Description Collection
X509StoreAttrCertCollection. engineGetMatches(Selector selector)
Collection
X509StoreCertCollection. engineGetMatches(Selector selector)
Collection
X509StoreCertPairCollection. engineGetMatches(Selector selector)
Returns a colelction of certificate pairs which match the givenselector
.Collection
X509StoreCRLCollection. engineGetMatches(Selector selector)
Collection
X509StoreLDAPAttrCerts. engineGetMatches(Selector selector)
Returns a collection of matching attribute certificates from the LDAP location.Collection
X509StoreLDAPCertPairs. engineGetMatches(Selector selector)
Returns a collection of matching cross certificate pairs from the LDAP location.Collection
X509StoreLDAPCerts. engineGetMatches(Selector selector)
Returns a collection of matching certificates from the LDAP location.Collection
X509StoreLDAPCRLs. engineGetMatches(Selector selector)
Returns a collection of matching CRLs from the LDAP location. -
Uses of Selector in org.bouncycastle.util
Methods in org.bouncycastle.util with parameters of type Selector Modifier and Type Method Description Collection<T>
CollectionStore. getMatches(Selector<T> selector)
Return the matches in the collection for the passed in selector.Collection<T>
Store. getMatches(Selector<T> selector)
Return a possibly empty collection of objects that match the criteria implemented in the passed in Selector. -
Uses of Selector in org.bouncycastle.x509
Classes in org.bouncycastle.x509 that implement Selector Modifier and Type Class Description class
AttributeCertificateHolder
Deprecated.use org.bouncycastle.cert.AttributeCertificateHolderclass
AttributeCertificateIssuer
Deprecated.use org.bouncycastle.cert.AttributeCertificateIssuerclass
X509AttributeCertStoreSelector
Deprecated.use org.bouncycastle.cert.X509AttributeCertificateSelector and org.bouncycastle.cert.X509AttributeCertificateSelectorBuilder.class
X509CertPairStoreSelector
This class is anSelector
like implementation to select certificates pairs, which are e.g.class
X509CertStoreSelector
Deprecated.use the classes under org.bouncycastle.cert.selectorclass
X509CRLStoreSelector
This class is a Selector implementation for X.509 certificate revocation lists.Methods in org.bouncycastle.x509 that return Selector Modifier and Type Method Description Selector
ExtendedPKIXParameters. getTargetConstraints()
Deprecated.Returns the required constraints on the target certificate or attribute certificate.Methods in org.bouncycastle.x509 with parameters of type Selector Modifier and Type Method Description abstract Collection
X509StoreSpi. engineGetMatches(Selector selector)
Collection
X509Store. getMatches(Selector selector)
Deprecated.void
ExtendedPKIXParameters. setTargetConstraints(Selector selector)
Deprecated.Sets the required constraints on the target certificate or attribute certificate.Constructors in org.bouncycastle.x509 with parameters of type Selector Constructor Description ExtendedPKIXBuilderParameters(Set trustAnchors, Selector targetConstraints)
Deprecated.Creates an instance ofPKIXBuilderParameters
with the specifiedSet
of most-trusted CAs.
-