org.bouncycastle.jcajce.provider.asymmetric.util.IESUtil Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bcprov-jdk14 Show documentation
Show all versions of bcprov-jdk14 Show documentation
The Bouncy Castle Crypto package is a Java implementation of cryptographic algorithms. This jar contains JCE provider and lightweight API for the Bouncy Castle Cryptography APIs for JDK 1.4.
package org.bouncycastle.jcajce.provider.asymmetric.util;
import org.bouncycastle.crypto.engines.IESEngine;
import org.bouncycastle.jce.spec.IESParameterSpec;
public class IESUtil
{
public static IESParameterSpec guessParameterSpec(IESEngine engine)
{
if (engine.getCipher() == null)
{
return new IESParameterSpec(null, null, 128);
}
else if (engine.getCipher().getUnderlyingCipher().getAlgorithmName().equals("DES") ||
engine.getCipher().getUnderlyingCipher().getAlgorithmName().equals("RC2") ||
engine.getCipher().getUnderlyingCipher().getAlgorithmName().equals("RC5-32") ||
engine.getCipher().getUnderlyingCipher().getAlgorithmName().equals("RC5-64"))
{
return new IESParameterSpec(null, null, 64, 64);
}
else if (engine.getCipher().getUnderlyingCipher().getAlgorithmName().equals("SKIPJACK"))
{
return new IESParameterSpec(null, null, 80, 80);
}
else if (engine.getCipher().getUnderlyingCipher().getAlgorithmName().equals("GOST28147"))
{
return new IESParameterSpec(null, null, 256, 256);
}
return new IESParameterSpec(null, null, 128, 128);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy