blob: f1ed06e046ea132e529606fdbfd4c42f978aa1df (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
using System;
namespace Org.BouncyCastle.Tls
{
/// <summary>Marker interface to distinguish a TLS client context.</summary>
public interface TlsClientContext
: TlsContext
{
}
}
|