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

package org.bouncycastle.its.jcajce;

import javax.crypto.spec.GCMParameterSpec;
import java.security.spec.AlgorithmParameterSpec;

class ClassUtil
{
    public static AlgorithmParameterSpec getGCMSpec(final byte[] src, final int tLen) {
        return new GCMParameterSpec(tLen, src);
    }
}
