This commit is contained in:
niko
2026-04-08 23:40:05 +02:00
parent d6894bcbc7
commit 18dc73f922
7750 changed files with 1795369 additions and 0 deletions
@@ -0,0 +1,32 @@
using System;
using System.Runtime.InteropServices;
using Cpp2IlInjected;
namespace BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Tls
{
// Token: 0x020015AA RID: 5546
[Token(Token = "0x20015AA")]
[StructLayout(3)]
public interface TlsPskIdentity
{
// Token: 0x060093B2 RID: 37810
[Token(Token = "0x60093B2")]
[Address(Slot = "0")]
void SkipIdentityHint();
// Token: 0x060093B3 RID: 37811
[Token(Token = "0x60093B3")]
[Address(Slot = "1")]
void NotifyIdentityHint(byte[] psk_identity_hint);
// Token: 0x060093B4 RID: 37812
[Token(Token = "0x60093B4")]
[Address(Slot = "2")]
byte[] GetPskIdentity();
// Token: 0x060093B5 RID: 37813
[Token(Token = "0x60093B5")]
[Address(Slot = "3")]
byte[] GetPsk();
}
}