Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Selector.java « util « bouncycastle « org « java « main « src « core - gitlab.com/quite/humla-spongycastle.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7ad86bf4ea7a3f55f79b2532373aa5cb3fcd05fa (plain)
1
2
3
4
5
6
7
8
9
package org.bouncycastle.util;

public interface Selector
    extends Cloneable
{
    boolean match(Object obj);

    Object clone();
}