BraintreeEncryption.Library.BouncyCastle.Crypto.Prng.DigestRandomGenerator.AddSeedMaterial C# (CSharp) Method

AddSeedMaterial() public method

public AddSeedMaterial ( byte inSeed ) : void
inSeed byte
return void
        public void AddSeedMaterial(
			byte[] inSeed)
        {
            lock (this)
            {
                DigestUpdate(inSeed);
                DigestUpdate(seed);
                DigestDoFinal(seed);
            }
        }

Same methods

DigestRandomGenerator::AddSeedMaterial ( long rSeed ) : void