blob: e5c3a462a4b49db3eefefdd95b0b7859991e491c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
using System;
using System.Collections;
namespace Org.BouncyCastle.X509.Store
{
public interface IX509Store
{
// void Init(IX509StoreParameters parameters);
ICollection GetMatches(IX509Selector selector);
}
}
|