- Added realracing3-community.apk (71.57 MB) - Removed 32-bit support (armeabi-v7a) - Only includes arm64-v8a libraries - Decompiled source code included - Added README-community.md with analysis
109 lines
3.8 KiB
Java
109 lines
3.8 KiB
Java
package com.google.android.gms.internal.ads;
|
|
|
|
import java.nio.ByteBuffer;
|
|
import java.security.InvalidAlgorithmParameterException;
|
|
import java.security.InvalidKeyException;
|
|
import java.security.NoSuchAlgorithmException;
|
|
import java.security.SecureRandom;
|
|
import javax.crypto.BadPaddingException;
|
|
import javax.crypto.Cipher;
|
|
import javax.crypto.IllegalBlockSizeException;
|
|
import javax.crypto.NoSuchPaddingException;
|
|
import javax.crypto.spec.IvParameterSpec;
|
|
import javax.crypto.spec.SecretKeySpec;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public final class zzavi {
|
|
private static Cipher zza;
|
|
private static final Object zzb = new Object();
|
|
private static final Object zzc = new Object();
|
|
|
|
public zzavi(SecureRandom secureRandom) {
|
|
}
|
|
|
|
private static final Cipher zzc() throws NoSuchAlgorithmException, NoSuchPaddingException {
|
|
Cipher cipher;
|
|
synchronized (zzc) {
|
|
try {
|
|
if (zza == null) {
|
|
zza = Cipher.getInstance("AES/CBC/PKCS5Padding");
|
|
}
|
|
cipher = zza;
|
|
} catch (Throwable th) {
|
|
throw th;
|
|
}
|
|
}
|
|
return cipher;
|
|
}
|
|
|
|
public final String zza(byte[] bArr, byte[] bArr2) throws zzavh {
|
|
byte[] doFinal;
|
|
byte[] iv;
|
|
int length = bArr.length;
|
|
try {
|
|
SecretKeySpec secretKeySpec = new SecretKeySpec(bArr, "AES");
|
|
synchronized (zzb) {
|
|
zzc().init(1, secretKeySpec, (SecureRandom) null);
|
|
doFinal = zzc().doFinal(bArr2);
|
|
iv = zzc().getIV();
|
|
}
|
|
int length2 = doFinal.length + iv.length;
|
|
ByteBuffer allocate = ByteBuffer.allocate(length2);
|
|
allocate.put(iv).put(doFinal);
|
|
allocate.flip();
|
|
byte[] bArr3 = new byte[length2];
|
|
allocate.get(bArr3);
|
|
return zzatr.zza(bArr3, false);
|
|
} catch (InvalidKeyException e) {
|
|
throw new zzavh(this, e);
|
|
} catch (NoSuchAlgorithmException e2) {
|
|
throw new zzavh(this, e2);
|
|
} catch (BadPaddingException e3) {
|
|
throw new zzavh(this, e3);
|
|
} catch (IllegalBlockSizeException e4) {
|
|
throw new zzavh(this, e4);
|
|
} catch (NoSuchPaddingException e5) {
|
|
throw new zzavh(this, e5);
|
|
}
|
|
}
|
|
|
|
public final byte[] zzb(byte[] bArr, String str) throws zzavh {
|
|
byte[] doFinal;
|
|
int length = bArr.length;
|
|
try {
|
|
byte[] zzb2 = zzatr.zzb(str, false);
|
|
int length2 = zzb2.length;
|
|
if (length2 <= 16) {
|
|
throw new zzavh(this);
|
|
}
|
|
ByteBuffer allocate = ByteBuffer.allocate(length2);
|
|
allocate.put(zzb2);
|
|
allocate.flip();
|
|
byte[] bArr2 = new byte[16];
|
|
byte[] bArr3 = new byte[length2 - 16];
|
|
allocate.get(bArr2);
|
|
allocate.get(bArr3);
|
|
SecretKeySpec secretKeySpec = new SecretKeySpec(bArr, "AES");
|
|
synchronized (zzb) {
|
|
zzc().init(2, secretKeySpec, new IvParameterSpec(bArr2));
|
|
doFinal = zzc().doFinal(bArr3);
|
|
}
|
|
return doFinal;
|
|
} catch (IllegalArgumentException e) {
|
|
throw new zzavh(this, e);
|
|
} catch (InvalidAlgorithmParameterException e2) {
|
|
throw new zzavh(this, e2);
|
|
} catch (InvalidKeyException e3) {
|
|
throw new zzavh(this, e3);
|
|
} catch (NoSuchAlgorithmException e4) {
|
|
throw new zzavh(this, e4);
|
|
} catch (BadPaddingException e5) {
|
|
throw new zzavh(this, e5);
|
|
} catch (IllegalBlockSizeException e6) {
|
|
throw new zzavh(this, e6);
|
|
} catch (NoSuchPaddingException e7) {
|
|
throw new zzavh(this, e7);
|
|
}
|
|
}
|
|
}
|