org.bouncycastle.tls.crypto.impl.jcajce.GCMUtil Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bctls-jdk14 Show documentation
Show all versions of bctls-jdk14 Show documentation
The Bouncy Castle Java APIs for TLS and DTLS.
The newest version!
package org.bouncycastle.tls.crypto.impl.jcajce;
import java.security.spec.AlgorithmParameterSpec;
class GCMUtil
{
static AlgorithmParameterSpec createGCMParameterSpec(final int tLen, final byte[] src)
throws Exception
{
throw new IllegalStateException();
}
static boolean isGCMParameterSpecAvailable()
{
return false;
}
}