1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
using System; using Org.BouncyCastle.Tls.Crypto; namespace Org.BouncyCastle.Tls { internal class TlsServerContextImpl : AbstractTlsContext, TlsServerContext { internal TlsServerContextImpl(TlsCrypto crypto) : base(crypto, ConnectionEnd.server) { } public override bool IsServer { get { return true; } } } }