Class ServerHelloInfo
Wraps up the server SSL hello information.
Inheritance
ServerHelloInfo
Assembly: Titanium.Web.Proxy.dll
Syntax
public class ServerHelloInfo
Constructors
|
Edit this page
View Source
ServerHelloInfo(int, int, int, byte[], byte[], int, int)
Declaration
public ServerHelloInfo(int handshakeVersion, int majorVersion, int minorVersion, byte[] random, byte[] sessionId, int cipherSuite, int serverHelloLength)
Parameters
| Type |
Name |
Description |
| int |
handshakeVersion |
|
| int |
majorVersion |
|
| int |
minorVersion |
|
| byte[] |
random |
|
| byte[] |
sessionId |
|
| int |
cipherSuite |
|
| int |
serverHelloLength |
|
Properties
|
Edit this page
View Source
CipherSuite
Declaration
public int CipherSuite { get; }
Property Value
|
Edit this page
View Source
CompressionMethod
Declaration
public byte CompressionMethod { get; set; }
Property Value
|
Edit this page
View Source
Extensions
Declaration
public Dictionary<string, SslExtension>? Extensions { get; set; }
Property Value
|
Edit this page
View Source
HandshakeVersion
Declaration
public int HandshakeVersion { get; }
Property Value
|
Edit this page
View Source
MajorVersion
Declaration
public int MajorVersion { get; }
Property Value
|
Edit this page
View Source
MinorVersion
Declaration
public int MinorVersion { get; }
Property Value
|
Edit this page
View Source
Random
Declaration
public byte[] Random { get; }
Property Value
|
Edit this page
View Source
SessionId
Declaration
public byte[] SessionId { get; }
Property Value
|
Edit this page
View Source
Time
Declaration
public DateTime Time { get; }
Property Value
Methods
|
Edit this page
View Source
ToString()
Returns a string that represents this instance.
Declaration
public override string ToString()
Returns
| Type |
Description |
| string |
A string that represents this instance.
|
Overrides