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

package org.bouncycastle.pqc.jcajce.spec;

import java.security.spec.AlgorithmParameterSpec;

public class LMSHSSKeyGenParameterSpec implements AlgorithmParameterSpec
{
    private final LMSKeyGenParameterSpec[] specs;
    
    public LMSHSSKeyGenParameterSpec(final LMSKeyGenParameterSpec... array) {
        if (array.length == 0) {
            throw new IllegalArgumentException("at least one LMSKeyGenParameterSpec required");
        }
        this.specs = array.clone();
    }
    
    public LMSKeyGenParameterSpec[] getLMSSpecs() {
        return this.specs.clone();
    }
}
