12 lines
216 B
C#
12 lines
216 B
C#
using System;
|
|
using System.Collections;
|
|
|
|
namespace Org.BouncyCastle.X509.Store
|
|
{
|
|
public interface IX509Store
|
|
{
|
|
// void Init(IX509StoreParameters parameters);
|
|
ICollection GetMatches(IX509Selector selector);
|
|
}
|
|
}
|