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,31 @@
using System;
using Cpp2IlInjected;
namespace BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Parameters
{
// Token: 0x02001CE0 RID: 7392
[Token(Token = "0x2001CE0")]
public class Iso18033KdfParameters : IDerivationParameters
{
// Token: 0x0600B707 RID: 46855 RVA: 0x002799B4 File Offset: 0x00277BB4
[Token(Token = "0x600B707")]
[Address(RVA = "0x493D90", Offset = "0x492D90", VA = "0x180493D90")]
public Iso18033KdfParameters(byte[] seed)
{
this.seed = seed;
}
// Token: 0x0600B708 RID: 46856 RVA: 0x002799D0 File Offset: 0x00277BD0
[Token(Token = "0x600B708")]
[Address(RVA = "0x411530", Offset = "0x410530", VA = "0x180411530")]
public byte[] GetSeed()
{
return this.seed;
}
// Token: 0x040073A8 RID: 29608
[FieldOffset(Offset = "0x10")]
[Token(Token = "0x40073A8")]
private byte[] seed;
}
}