diff options
Diffstat (limited to 'crypto/src/x509/store/IX509Store.cs')
-rw-r--r-- | crypto/src/x509/store/IX509Store.cs | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/crypto/src/x509/store/IX509Store.cs b/crypto/src/x509/store/IX509Store.cs new file mode 100644 index 000000000..e5c3a462a --- /dev/null +++ b/crypto/src/x509/store/IX509Store.cs @@ -0,0 +1,11 @@ +using System; +using System.Collections; + +namespace Org.BouncyCastle.X509.Store +{ + public interface IX509Store + { +// void Init(IX509StoreParameters parameters); + ICollection GetMatches(IX509Selector selector); + } +} |