Org.BouncyCastle.Crypto.Tls.TlsProtocolHandler.TlsProtocolHandler C# (CSharp) Method

TlsProtocolHandler() public method

Both streams can be the same object
public TlsProtocolHandler ( Stream inStr, Stream outStr, SecureRandom sr ) : System
inStr Stream
outStr Stream
sr SecureRandom
return System
        public TlsProtocolHandler(
            Stream			inStr,
            Stream			outStr,
            SecureRandom	sr)
        {
            this.rs = new RecordStream(this, inStr, outStr);
            this.random = sr;
        }

Same methods

TlsProtocolHandler::TlsProtocolHandler ( Stream s ) : System
TlsProtocolHandler::TlsProtocolHandler ( Stream s, SecureRandom sr ) : System
TlsProtocolHandler::TlsProtocolHandler ( Stream inStr, Stream outStr ) : System