Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
SslConnectionInfo.cs
Go to the documentation of this file.
1
namespace
System.Net.Security
;
2
3
internal
sealed
class
SslConnectionInfo
4
{
5
public
int
Protocol
{
get
; }
6
7
public
TlsCipherSuite
TlsCipherSuite
{
get
;
private
set
; }
8
9
public
int
DataCipherAlg
{
get
;
private
set
; }
10
11
public
int
DataKeySize
{
get
;
private
set
; }
12
13
public
int
DataHashAlg
{
get
;
private
set
; }
14
15
public
int
DataHashKeySize
{
get
;
private
set
; }
16
17
public
int
KeyExchangeAlg
{
get
;
private
set
; }
18
19
public
int
KeyExchKeySize
{
get
;
private
set
; }
20
21
public
SslConnectionInfo
(
SecPkgContext_ConnectionInfo
interopConnectionInfo,
TlsCipherSuite
cipherSuite)
22
{
23
Protocol
= interopConnectionInfo.
Protocol
;
24
DataCipherAlg
= interopConnectionInfo.
DataCipherAlg
;
25
DataKeySize
= interopConnectionInfo.
DataKeySize
;
26
DataHashAlg
= interopConnectionInfo.
DataHashAlg
;
27
DataHashKeySize
= interopConnectionInfo.
DataHashKeySize
;
28
KeyExchangeAlg
= interopConnectionInfo.
KeyExchangeAlg
;
29
KeyExchKeySize
= interopConnectionInfo.
KeyExchKeySize
;
30
TlsCipherSuite
= cipherSuite;
31
}
32
}
System.Net.Security.SslConnectionInfo.KeyExchKeySize
int KeyExchKeySize
Definition
SslConnectionInfo.cs:19
System.Net.Security.SslConnectionInfo.DataHashKeySize
int DataHashKeySize
Definition
SslConnectionInfo.cs:15
System.Net.Security.SslConnectionInfo.DataKeySize
int DataKeySize
Definition
SslConnectionInfo.cs:11
System.Net.Security.SslConnectionInfo.Protocol
int Protocol
Definition
SslConnectionInfo.cs:5
System.Net.Security.SslConnectionInfo.DataCipherAlg
int DataCipherAlg
Definition
SslConnectionInfo.cs:9
System.Net.Security.SslConnectionInfo.SslConnectionInfo
SslConnectionInfo(SecPkgContext_ConnectionInfo interopConnectionInfo, TlsCipherSuite cipherSuite)
Definition
SslConnectionInfo.cs:21
System.Net.Security.SslConnectionInfo.DataHashAlg
int DataHashAlg
Definition
SslConnectionInfo.cs:13
System.Net.Security.SslConnectionInfo.KeyExchangeAlg
int KeyExchangeAlg
Definition
SslConnectionInfo.cs:17
System.Net.Security.SslConnectionInfo
Definition
SslConnectionInfo.cs:4
System.Net.Security.TlsCipherSuite
TlsCipherSuite
Definition
TlsCipherSuite.cs:5
System.Net.Security
Definition
CertificateHelper.cs:4
System.Net.SecPkgContext_ConnectionInfo.DataCipherAlg
readonly int DataCipherAlg
Definition
SecPkgContext_ConnectionInfo.cs:7
System.Net.SecPkgContext_ConnectionInfo.KeyExchKeySize
readonly int KeyExchKeySize
Definition
SecPkgContext_ConnectionInfo.cs:17
System.Net.SecPkgContext_ConnectionInfo.DataHashAlg
readonly int DataHashAlg
Definition
SecPkgContext_ConnectionInfo.cs:11
System.Net.SecPkgContext_ConnectionInfo.KeyExchangeAlg
readonly int KeyExchangeAlg
Definition
SecPkgContext_ConnectionInfo.cs:15
System.Net.SecPkgContext_ConnectionInfo.DataKeySize
readonly int DataKeySize
Definition
SecPkgContext_ConnectionInfo.cs:9
System.Net.SecPkgContext_ConnectionInfo.DataHashKeySize
readonly int DataHashKeySize
Definition
SecPkgContext_ConnectionInfo.cs:13
System.Net.SecPkgContext_ConnectionInfo.Protocol
readonly int Protocol
Definition
SecPkgContext_ConnectionInfo.cs:5
System.Net.SecPkgContext_ConnectionInfo
Definition
SecPkgContext_ConnectionInfo.cs:4
source
System.Net.Security
System.Net.Security
SslConnectionInfo.cs
Generated by
1.10.0