This commit is contained in:
niko
2026-04-12 16:51:38 +02:00
parent 1b6f6d81d0
commit c12fbe3fc6
17828 changed files with 2994770 additions and 0 deletions
@@ -0,0 +1,29 @@
using System;
using Cpp2IlInjected;
namespace BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Tls
{
// Token: 0x02001C26 RID: 7206
[Token(Token = "0x2001C26")]
public abstract class PrfAlgorithm
{
// Token: 0x0600B139 RID: 45369 RVA: 0x002651EC File Offset: 0x002633EC
[Token(Token = "0x600B139")]
[Address(RVA = "0x412370", Offset = "0x411370", VA = "0x180412370")]
protected PrfAlgorithm()
{
}
// Token: 0x04007125 RID: 28965
[Token(Token = "0x4007125")]
public const int tls_prf_legacy = 0;
// Token: 0x04007126 RID: 28966
[Token(Token = "0x4007126")]
public const int tls_prf_sha256 = 1;
// Token: 0x04007127 RID: 28967
[Token(Token = "0x4007127")]
public const int tls_prf_sha384 = 2;
}
}