This commit is contained in:
niko
2026-04-10 22:50:51 +02:00
parent 6d1607d5a2
commit f18d448581
17033 changed files with 2863270 additions and 0 deletions
+33
View File
@@ -0,0 +1,33 @@
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;
}
}
}