// 
// Decompiled by Procyon v0.6.0
// 

package org.bouncycastle.crypto;

import java.security.SecureRandom;

public class KeyGenerationParameters
{
    private SecureRandom random;
    private int strength;
    
    public KeyGenerationParameters(final SecureRandom secureRandom, final int strength) {
        this.random = CryptoServicesRegistrar.getSecureRandom(secureRandom);
        this.strength = strength;
    }
    
    public SecureRandom getRandom() {
        return this.random;
    }
    
    public int getStrength() {
        return this.strength;
    }
}
