Add Discord community version (64-bit only)

- 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
This commit is contained in:
2026-02-18 15:48:36 -08:00
parent c19eb3d7ff
commit c080f0d97f
26930 changed files with 2529574 additions and 0 deletions

View File

@@ -0,0 +1,163 @@
package com.ironsource.mediationsdk.utils;
import android.annotation.SuppressLint;
import android.text.TextUtils;
import android.util.Base64;
import com.ironsource.i9;
import com.ironsource.mediationsdk.logger.IronLog;
import com.ironsource.si;
import com.ironsource.xa;
import java.io.UnsupportedEncodingException;
import java.util.Arrays;
import javax.crypto.Cipher;
import javax.crypto.spec.IvParameterSpec;
import javax.crypto.spec.SecretKeySpec;
/* loaded from: classes4.dex */
public class IronSourceAES {
private static SecretKeySpec a(String str) throws UnsupportedEncodingException {
byte[] bArr = new byte[32];
Arrays.fill(bArr, (byte) 0);
byte[] bytes = str.getBytes("UTF-8");
System.arraycopy(bytes, 0, bArr, 0, bytes.length < 32 ? bytes.length : 32);
return new SecretKeySpec(bArr, "AES");
}
public static synchronized String compressAndEncrypt(String str) {
String compressAndEncrypt;
synchronized (IronSourceAES.class) {
compressAndEncrypt = compressAndEncrypt(xa.b().c(), str);
}
return compressAndEncrypt;
}
public static synchronized String compressAndEncrypt(String str, String str2) {
synchronized (IronSourceAES.class) {
if (TextUtils.isEmpty(str2)) {
return "";
}
try {
byte[] a = si.a(str2);
if (a != null) {
return encodeFromBytes(str, a);
}
} catch (Exception e) {
i9.d().a(e);
IronLog.INTERNAL.error(e.toString());
}
return "";
}
}
public static synchronized String decode(String str, String str2) {
synchronized (IronSourceAES.class) {
byte[] decodeToBytes = decodeToBytes(str, str2);
if (decodeToBytes == null) {
return "";
}
return new String(decodeToBytes);
}
}
public static synchronized byte[] decodeToBytes(String str, String str2) {
synchronized (IronSourceAES.class) {
if (TextUtils.isEmpty(str)) {
return null;
}
if (TextUtils.isEmpty(str2)) {
return null;
}
try {
SecretKeySpec a = a(str);
byte[] bArr = new byte[16];
Arrays.fill(bArr, (byte) 0);
IvParameterSpec ivParameterSpec = new IvParameterSpec(bArr);
byte[] decode = Base64.decode(str2, 0);
Cipher cipher = Cipher.getInstance("AES/CBC/PKCS7Padding");
cipher.init(2, a, ivParameterSpec);
return cipher.doFinal(decode);
} catch (Exception e) {
i9.d().a(e);
IronLog.INTERNAL.error("exception on decryption error: " + e.getMessage());
return null;
}
}
}
public static synchronized String decryptAndDecompress(String str) {
String decryptAndDecompress;
synchronized (IronSourceAES.class) {
decryptAndDecompress = decryptAndDecompress(xa.b().c(), str);
}
return decryptAndDecompress;
}
public static synchronized String decryptAndDecompress(String str, String str2) {
synchronized (IronSourceAES.class) {
if (TextUtils.isEmpty(str2)) {
return "";
}
try {
byte[] decodeToBytes = decodeToBytes(str, str2);
if (decodeToBytes != null) {
return si.a(decodeToBytes);
}
} catch (Exception e) {
i9.d().a(e);
IronLog.INTERNAL.error(e.toString());
}
return "";
}
}
public static synchronized String encode(String str, String str2) {
synchronized (IronSourceAES.class) {
if (TextUtils.isEmpty(str)) {
return "";
}
if (TextUtils.isEmpty(str2)) {
return "";
}
try {
return encodeFromBytes(str, str2.getBytes("UTF8"));
} catch (Exception e) {
i9.d().a(e);
IronLog.INTERNAL.error(e.toString());
return "";
}
}
}
@SuppressLint({"TrulyRandom"})
public static synchronized String encodeFromBytes(String str, byte[] bArr) {
synchronized (IronSourceAES.class) {
if (TextUtils.isEmpty(str)) {
return "";
}
if (bArr == null) {
return "";
}
try {
SecretKeySpec a = a(str);
byte[] bArr2 = new byte[16];
Arrays.fill(bArr2, (byte) 0);
IvParameterSpec ivParameterSpec = new IvParameterSpec(bArr2);
Cipher cipher = Cipher.getInstance("AES/CBC/PKCS7Padding");
cipher.init(1, a, ivParameterSpec);
return Base64.encodeToString(cipher.doFinal(bArr), 0).replaceAll(System.getProperty("line.separator"), "");
} catch (Exception e) {
i9.d().a(e);
IronLog.INTERNAL.error(e.toString());
return "";
}
}
}
public static synchronized String encrypt(String str) {
String encode;
synchronized (IronSourceAES.class) {
encode = encode(xa.b().c(), str);
}
return encode;
}
}