Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
ICertificatePalCore.cs
Go to the documentation of this file.
1using System;
4
6
7internal interface ICertificatePalCore : IDisposable
8{
9 bool HasPrivateKey { get; }
10
11 IntPtr Handle { get; }
12
13 string Issuer { get; }
14
15 string Subject { get; }
16
17 string LegacyIssuer { get; }
18
19 string LegacySubject { get; }
20
21 byte[] Thumbprint { get; }
22
23 string KeyAlgorithm { get; }
24
25 byte[] KeyAlgorithmParameters { get; }
26
27 byte[] PublicKeyValue { get; }
28
29 byte[] SerialNumber { get; }
30
31 string SignatureAlgorithm { get; }
32
34
36
37 byte[] RawData { get; }
38
39 byte[] Export(X509ContentType contentType, SafePasswordHandle password);
40}
byte[] Export(X509ContentType contentType, SafePasswordHandle password)