123456789101112131415161718192021222324252627282930 |
- #if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR)
- using System;
- namespace Org.BouncyCastle.Crypto.Prng
- {
-
- public interface IRandomGenerator
- {
-
-
- void AddSeedMaterial(byte[] seed);
-
-
- void AddSeedMaterial(long seed);
-
-
- void NextBytes(byte[] bytes);
-
-
-
-
- void NextBytes(byte[] bytes, int start, int len);
- }
- }
- #endif
|