AaltoTLS.HandshakeLayer.Protocol.HandshakeClientHello.HandshakeClientHello C# (CSharp) Method

HandshakeClientHello() public method

public HandshakeClientHello ( ProtocolVersion version ) : System
version AaltoTLS.PluginInterface.ProtocolVersion
return System
        public HandshakeClientHello(ProtocolVersion version)
            : base(HandshakeMessageType.ClientHello, version)
        {
            ClientVersion       = version;
            Random              = new HandshakeRandom();
            SessionID           = new byte[0];
            Cookie              = new byte[0];
            CipherSuites        = new List<UInt16>();
            CompressionMethods  = new List<Byte>();
            Extensions          = new List<HelloExtension>();
        }

Same methods

HandshakeClientHello::HandshakeClientHello ( ) : System