コード例 #1
0
 /// <remarks>Both streams can be the same object</remarks>
 public TlsProtocolHandler(
     Stream inStr,
     Stream outStr,
     SecureRandom sr)
 {
     this.rs     = new RecordStream(this, inStr, outStr);
     this.random = sr;
 }
コード例 #2
0
		/// <remarks>Both streams can be the same object</remarks>
		public TlsProtocolHandler(
			Stream			inStr,
			Stream			outStr,
			SecureRandom	sr)
		{
			this.rs = new RecordStream(this, inStr, outStr);
			this.random = sr;
		}