コード例 #1
0
ファイル: Context.cs プロジェクト: waffle-iron/nequeo
        public virtual void Clear()
        {
            this.compressionMethod = SecurityCompressionType.None;
            this.serverSettings    = new TlsServerSettings();
            this.clientSettings    = new TlsClientSettings();
            this.handshakeMessages = new TlsStream();
            this.sessionId         = null;
            this.handshakeState    = HandshakeState.None;

            this.ClearKeyInfo();
        }
コード例 #2
0
ファイル: Context.cs プロジェクト: waffle-iron/nequeo
 public Context(SecurityProtocolType securityProtocolType)
 {
     this.SecurityProtocol  = securityProtocolType;
     this.compressionMethod = SecurityCompressionType.None;
     this.serverSettings    = new TlsServerSettings();
     this.clientSettings    = new TlsClientSettings();
     this.handshakeMessages = new TlsStream();
     this.sessionId         = null;
     this.handshakeState    = HandshakeState.None;
     this.random            = RandomNumberGenerator.Create();
 }