Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
SecPkgContext_CipherInfo.cs
Go to the documentation of this file.
2
3namespace System.Net;
4
5[StructLayout(LayoutKind.Sequential, CharSet = CharSet.Unicode)]
7{
8 private readonly int dwVersion;
9
10 private readonly int dwProtocol;
11
12 public readonly int dwCipherSuite;
13
14 private readonly int dwBaseCipherSuite;
15
16 private unsafe fixed char szCipherSuite[64];
17
18 private unsafe fixed char szCipher[64];
19
20 private readonly int dwCipherLen;
21
22 private readonly int dwCipherBlockLen;
23
24 private unsafe fixed char szHash[64];
25
26 private readonly int dwHashLen;
27
28 private unsafe fixed char szExchange[64];
29
30 private readonly int dwMinExchangeLen;
31
32 private readonly int dwMaxExchangeLen;
33
34 private unsafe fixed char szCertificate[64];
35
36 private readonly int dwKeyType;
37}