what-the-bank/sources/org/bouncycastle/jce/MultiCertStoreParameters.java

33 lines
813 B
Java

package org.bouncycastle.jce;
import java.security.cert.CertStoreParameters;
import java.util.Collection;
/* loaded from: classes6.dex */
public class MultiCertStoreParameters implements CertStoreParameters {
private Collection certStores;
private boolean searchAllStores;
@Override // java.security.cert.CertStoreParameters
public Object clone() {
return this;
}
public boolean getSearchAllStores() {
return this.searchAllStores;
}
public Collection getCertStores() {
return this.certStores;
}
public MultiCertStoreParameters(Collection collection, boolean z) {
this.certStores = collection;
this.searchAllStores = z;
}
public MultiCertStoreParameters(Collection collection) {
this(collection, true);
}
}