158 lines
6.3 KiB
Java
158 lines
6.3 KiB
Java
package org.bouncycastle.jcajce.provider.symmetric;
|
|
|
|
import java.security.AlgorithmParameters;
|
|
import java.security.InvalidAlgorithmParameterException;
|
|
import java.security.SecureRandom;
|
|
import java.security.spec.AlgorithmParameterSpec;
|
|
import javax.crypto.spec.IvParameterSpec;
|
|
import org.bouncycastle.crypto.BlockCipher;
|
|
import org.bouncycastle.crypto.CipherKeyGenerator;
|
|
import org.bouncycastle.crypto.engines.SM4Engine;
|
|
import org.bouncycastle.crypto.generators.Poly1305KeyGenerator;
|
|
import org.bouncycastle.crypto.macs.CMac;
|
|
import org.bouncycastle.crypto.macs.GMac;
|
|
import org.bouncycastle.crypto.modes.GCMBlockCipher;
|
|
import org.bouncycastle.jcajce.provider.config.ConfigurableProvider;
|
|
import org.bouncycastle.jcajce.provider.symmetric.util.BaseAlgorithmParameterGenerator;
|
|
import org.bouncycastle.jcajce.provider.symmetric.util.BaseBlockCipher;
|
|
import org.bouncycastle.jcajce.provider.symmetric.util.BaseKeyGenerator;
|
|
import org.bouncycastle.jcajce.provider.symmetric.util.BaseMac;
|
|
import org.bouncycastle.jcajce.provider.symmetric.util.BlockCipherProvider;
|
|
import org.bouncycastle.jcajce.provider.symmetric.util.IvAlgorithmParameters;
|
|
|
|
/* loaded from: classes6.dex */
|
|
public final class SM4 {
|
|
|
|
/* loaded from: classes6.dex */
|
|
public static class AlgParamGen extends BaseAlgorithmParameterGenerator {
|
|
@Override // java.security.AlgorithmParameterGeneratorSpi
|
|
protected void engineInit(AlgorithmParameterSpec algorithmParameterSpec, SecureRandom secureRandom) throws InvalidAlgorithmParameterException {
|
|
throw new InvalidAlgorithmParameterException("No supported AlgorithmParameterSpec for SM4 parameter generation.");
|
|
}
|
|
|
|
@Override // java.security.AlgorithmParameterGeneratorSpi
|
|
protected AlgorithmParameters engineGenerateParameters() {
|
|
byte[] bArr = new byte[16];
|
|
if (this.random == null) {
|
|
this.random = new SecureRandom();
|
|
}
|
|
this.random.nextBytes(bArr);
|
|
try {
|
|
AlgorithmParameters createParametersInstance = createParametersInstance("SM4");
|
|
createParametersInstance.init(new IvParameterSpec(bArr));
|
|
return createParametersInstance;
|
|
} catch (Exception e) {
|
|
throw new RuntimeException(e.getMessage());
|
|
}
|
|
}
|
|
}
|
|
|
|
/* loaded from: classes6.dex */
|
|
public static class Mappings extends SymmetricAlgorithmProvider {
|
|
private static final String PREFIX = SM4.class.getName();
|
|
|
|
@Override // org.bouncycastle.jcajce.provider.util.AlgorithmProvider
|
|
public void configure(ConfigurableProvider configurableProvider) {
|
|
StringBuilder sb = new StringBuilder();
|
|
String str = PREFIX;
|
|
sb.append(str);
|
|
sb.append("$AlgParams");
|
|
configurableProvider.addAlgorithm("AlgorithmParameters.SM4", sb.toString());
|
|
StringBuilder sb2 = new StringBuilder();
|
|
sb2.append(str);
|
|
sb2.append("$AlgParamGen");
|
|
configurableProvider.addAlgorithm("AlgorithmParameterGenerator.SM4", sb2.toString());
|
|
StringBuilder sb3 = new StringBuilder();
|
|
sb3.append(str);
|
|
sb3.append("$ECB");
|
|
configurableProvider.addAlgorithm("Cipher.SM4", sb3.toString());
|
|
StringBuilder sb4 = new StringBuilder();
|
|
sb4.append(str);
|
|
sb4.append("$KeyGen");
|
|
configurableProvider.addAlgorithm("KeyGenerator.SM4", sb4.toString());
|
|
StringBuilder sb5 = new StringBuilder();
|
|
sb5.append(str);
|
|
sb5.append("$CMAC");
|
|
String obj = sb5.toString();
|
|
StringBuilder sb6 = new StringBuilder();
|
|
sb6.append(str);
|
|
sb6.append("$KeyGen");
|
|
addCMacAlgorithm(configurableProvider, "SM4", obj, sb6.toString());
|
|
StringBuilder sb7 = new StringBuilder();
|
|
sb7.append(str);
|
|
sb7.append("$GMAC");
|
|
String obj2 = sb7.toString();
|
|
StringBuilder sb8 = new StringBuilder();
|
|
sb8.append(str);
|
|
sb8.append("$KeyGen");
|
|
addGMacAlgorithm(configurableProvider, "SM4", obj2, sb8.toString());
|
|
StringBuilder sb9 = new StringBuilder();
|
|
sb9.append(str);
|
|
sb9.append("$Poly1305");
|
|
String obj3 = sb9.toString();
|
|
StringBuilder sb10 = new StringBuilder();
|
|
sb10.append(str);
|
|
sb10.append("$Poly1305KeyGen");
|
|
addPoly1305Algorithm(configurableProvider, "SM4", obj3, sb10.toString());
|
|
}
|
|
}
|
|
|
|
/* loaded from: classes6.dex */
|
|
public static class AlgParams extends IvAlgorithmParameters {
|
|
@Override // org.bouncycastle.jcajce.provider.symmetric.util.IvAlgorithmParameters, java.security.AlgorithmParametersSpi
|
|
public String engineToString() {
|
|
return "SM4 IV";
|
|
}
|
|
}
|
|
|
|
/* loaded from: classes6.dex */
|
|
public static class CMAC extends BaseMac {
|
|
public CMAC() {
|
|
super(new CMac(new SM4Engine()));
|
|
}
|
|
}
|
|
|
|
/* loaded from: classes6.dex */
|
|
public static class ECB extends BaseBlockCipher {
|
|
public ECB() {
|
|
super(new BlockCipherProvider() { // from class: org.bouncycastle.jcajce.provider.symmetric.SM4.ECB.1
|
|
@Override // org.bouncycastle.jcajce.provider.symmetric.util.BlockCipherProvider
|
|
public BlockCipher get() {
|
|
return new SM4Engine();
|
|
}
|
|
});
|
|
}
|
|
}
|
|
|
|
/* loaded from: classes6.dex */
|
|
public static class GMAC extends BaseMac {
|
|
public GMAC() {
|
|
super(new GMac(new GCMBlockCipher(new SM4Engine())));
|
|
}
|
|
}
|
|
|
|
/* loaded from: classes6.dex */
|
|
public static class KeyGen extends BaseKeyGenerator {
|
|
public KeyGen() {
|
|
super("SM4", 128, new CipherKeyGenerator());
|
|
}
|
|
}
|
|
|
|
/* loaded from: classes6.dex */
|
|
public static class Poly1305 extends BaseMac {
|
|
public Poly1305() {
|
|
super(new org.bouncycastle.crypto.macs.Poly1305(new SM4Engine()));
|
|
}
|
|
}
|
|
|
|
/* loaded from: classes6.dex */
|
|
public static class Poly1305KeyGen extends BaseKeyGenerator {
|
|
public Poly1305KeyGen() {
|
|
super("Poly1305-SM4", 256, new Poly1305KeyGenerator());
|
|
}
|
|
}
|
|
|
|
private SM4() {
|
|
}
|
|
}
|