Org.BouncyCastle.Crypto.KeyGenerationParameters.KeyGenerationParameters C# (CSharp) Method

KeyGenerationParameters() public method

public KeyGenerationParameters ( SecureRandom random, int strength ) : System
random Org.BouncyCastle.Security.SecureRandom
strength int
return System
        public KeyGenerationParameters(
            SecureRandom	random,
            int				strength)
        {
			if (random == null)
				throw new ArgumentNullException("random");
			if (strength < 1)
				throw new ArgumentException("strength must be a positive value", "strength");

			this.random = random;
            this.strength = strength;
        }
KeyGenerationParameters