Files
Apr2020-Cpp2Il-Dump/System/Mono/Unity/CertHelper.cs
T
niko 8fc35183db a
2026-04-11 22:19:20 +02:00

34 lines
1.3 KiB
C#

using System;
using System.Security.Cryptography.X509Certificates;
using Cpp2IlInjected;
namespace Mono.Unity
{
// Token: 0x02000004 RID: 4
[Token(Token = "0x2000004")]
internal static class CertHelper
{
// Token: 0x06000008 RID: 8 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000008")]
[Address(RVA = "0x44BA30", Offset = "0x44A830", VA = "0x18044BA30")]
public unsafe static void AddCertificatesToNativeChain(UnityTls.unitytls_x509list* nativeCertificateChain, X509CertificateCollection certificates, UnityTls.unitytls_errorstate* errorState)
{
}
// Token: 0x06000009 RID: 9 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000009")]
[Address(RVA = "0x44B870", Offset = "0x44A670", VA = "0x18044B870")]
public unsafe static void AddCertificateToNativeChain(UnityTls.unitytls_x509list* nativeCertificateChain, X509Certificate certificate, UnityTls.unitytls_errorstate* errorState)
{
}
// Token: 0x0600000A RID: 10 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x600000A")]
[Address(RVA = "0x44BB40", Offset = "0x44A940", VA = "0x18044BB40")]
public unsafe static X509CertificateCollection NativeChainToManagedCollection(UnityTls.unitytls_x509list_ref nativeCertificateChain, UnityTls.unitytls_errorstate* errorState)
{
return null;
}
}
}