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

package org.bouncycastle.pqc.crypto.ntruprime;

import org.bouncycastle.crypto.CryptoServicesRegistrar;
import java.security.SecureRandom;
import org.bouncycastle.crypto.KeyGenerationParameters;

public class SNTRUPrimeKeyGenerationParameters extends KeyGenerationParameters
{
    private final SNTRUPrimeParameters sntrupParams;
    
    public SNTRUPrimeKeyGenerationParameters(final SecureRandom secureRandom, final SNTRUPrimeParameters sntrupParams) {
        super((null != secureRandom) ? secureRandom : CryptoServicesRegistrar.getSecureRandom(), 256);
        this.sntrupParams = sntrupParams;
    }
    
    public SNTRUPrimeParameters getSntrupParams() {
        return this.sntrupParams;
    }
}
