m
This commit is contained in:
+30
@@ -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);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user