BraintreeEncryption.Library.BouncyCastle.Crypto.Prng.ReversedWindowGenerator.NextBytes C# (CSharp) Method

NextBytes() public method

Fill byte array with random values.
public NextBytes ( byte bytes ) : void
bytes byte Array to be filled.
return void
        public virtual void NextBytes(
			byte[] bytes)
        {
            doNextBytes(bytes, 0, bytes.Length);
        }

Same methods

ReversedWindowGenerator::NextBytes ( byte bytes, int start, int len ) : void