123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899 |
- #if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR)
- #pragma warning disable
- using System;
- using BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Prng.Drbg;
- using BestHTTP.SecureProtocol.Org.BouncyCastle.Security;
- namespace BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Prng
- {
- public class SP800SecureRandom
- : SecureRandom
- {
- private readonly IDrbgProvider mDrbgProvider;
- private readonly bool mPredictionResistant;
- private readonly SecureRandom mRandomSource;
- private readonly IEntropySource mEntropySource;
- private ISP80090Drbg mDrbg;
- internal SP800SecureRandom(SecureRandom randomSource, IEntropySource entropySource, IDrbgProvider drbgProvider, bool predictionResistant)
- : base((IRandomGenerator)null)
- {
- this.mRandomSource = randomSource;
- this.mEntropySource = entropySource;
- this.mDrbgProvider = drbgProvider;
- this.mPredictionResistant = predictionResistant;
- }
- public override void SetSeed(byte[] seed)
- {
- lock (this)
- {
- if (mRandomSource != null)
- {
- this.mRandomSource.SetSeed(seed);
- }
- }
- }
- public override void SetSeed(long seed)
- {
- lock (this)
- {
- // this will happen when SecureRandom() is created
- if (mRandomSource != null)
- {
- this.mRandomSource.SetSeed(seed);
- }
- }
- }
- public override void NextBytes(byte[] bytes)
- {
- lock (this)
- {
- if (mDrbg == null)
- {
- mDrbg = mDrbgProvider.Get(mEntropySource);
- }
- // check if a reseed is required...
- if (mDrbg.Generate(bytes, null, mPredictionResistant) < 0)
- {
- mDrbg.Reseed(null);
- mDrbg.Generate(bytes, null, mPredictionResistant);
- }
- }
- }
- public override void NextBytes(byte[] buf, int off, int len)
- {
- byte[] bytes = new byte[len];
- NextBytes(bytes);
- Array.Copy(bytes, 0, buf, off, len);
- }
- public override byte[] GenerateSeed(int numBytes)
- {
- return EntropyUtilities.GenerateSeed(mEntropySource, numBytes);
- }
- /// <summary>Force a reseed of the DRBG.</summary>
- /// <param name="additionalInput">optional additional input</param>
- public virtual void Reseed(byte[] additionalInput)
- {
- lock (this)
- {
- if (mDrbg == null)
- {
- mDrbg = mDrbgProvider.Get(mEntropySource);
- }
- mDrbg.Reseed(additionalInput);
- }
- }
- }
- }
- #pragma warning restore
- #endif
|