diff options
Diffstat (limited to 'crypto/src/tls/TlsClientContextImpl.cs')
-rw-r--r-- | crypto/src/tls/TlsClientContextImpl.cs | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/crypto/src/tls/TlsClientContextImpl.cs b/crypto/src/tls/TlsClientContextImpl.cs new file mode 100644 index 000000000..3ce4ab86b --- /dev/null +++ b/crypto/src/tls/TlsClientContextImpl.cs @@ -0,0 +1,20 @@ +using System; + +using Org.BouncyCastle.Tls.Crypto; + +namespace Org.BouncyCastle.Tls +{ + internal class TlsClientContextImpl + : AbstractTlsContext, TlsClientContext + { + internal TlsClientContextImpl(TlsCrypto crypto) + : base(crypto, ConnectionEnd.client) + { + } + + public override bool IsServer + { + get { return false; } + } + } +} |