package org.bouncycastle.crypto; import java.security.SecureRandom; /* loaded from: classes6.dex */ public class KeyGenerationParameters { private SecureRandom random; private int strength; public int getStrength() { return this.strength; } public SecureRandom getRandom() { return this.random; } public KeyGenerationParameters(SecureRandom secureRandom, int i) { this.random = secureRandom; this.strength = i; } }