11 lines
136 B
C#
11 lines
136 B
C#
using System;
|
|
|
|
namespace Org.BouncyCastle.X509.Store
|
|
{
|
|
public interface IX509Selector
|
|
: ICloneable
|
|
{
|
|
bool Match(object obj);
|
|
}
|
|
}
|