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,30 @@
using System;
using Cpp2IlInjected;
namespace BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Prng
{
// Token: 0x02001CA6 RID: 7334
[Token(Token = "0x2001CA6")]
public interface IRandomGenerator
{
// Token: 0x0600B5A1 RID: 46497
[Token(Token = "0x600B5A1")]
[Address(Slot = "0")]
void AddSeedMaterial(byte[] seed);
// Token: 0x0600B5A2 RID: 46498
[Token(Token = "0x600B5A2")]
[Address(Slot = "1")]
void AddSeedMaterial(long seed);
// Token: 0x0600B5A3 RID: 46499
[Token(Token = "0x600B5A3")]
[Address(Slot = "2")]
void NextBytes(byte[] bytes);
// Token: 0x0600B5A4 RID: 46500
[Token(Token = "0x600B5A4")]
[Address(Slot = "3")]
void NextBytes(byte[] bytes, int start, int len);
}
}