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

Store.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: b994c926da516b75042db8b17783c61bbe1661ca (plain)
1
2
3
4
5
6
7
8
9
package org.bouncycastle.util;

import java.util.Collection;

public interface Store
{
    Collection getMatches(Selector selector)
        throws StoreException;
}