* Decompile and recreate Soul Browser v1.4.85 with APK CI builds Co-authored-by: KaKi87 <KaKi87@pm.me> * Fix CI build: include bundled google.jks and remove PR trigger The apktool build failed in CI because app/unknown/.../google.jks was excluded by the *.jks gitignore rule. Whitelist app-bundled JKS files and commit the missing resource. Also remove the redundant pull_request workflow trigger. Co-authored-by: KaKi87 <KaKi87@pm.me> * Change package ID to com.github.kaki87.soulbrowser Rename the application ID so the rebuilt APK can be installed alongside the original Soul Browser from Google Play. - Update AndroidManifest package, permissions, providers, and actions - Update R class references in smali (com/github/kaki87/soulbrowser/R) - Update shortcuts.xml targetPackage - Rename app label to "Soul Rebuild" for easy identification Co-authored-by: KaKi87 <KaKi87@pm.me> * Fix install compatibility: remove split APK metadata and bundle native libs The rebuilt APK still declared requiredSplitTypes and Play Store split metadata, causing Android to reject standalone installs as incompatible. - Remove requiredSplitTypes and split-related manifest meta-data - Merge native libs from all ABI splits with uncompressed storage - Page-align before signing for extractNativeLibs=false - Add .so to apktool doNotCompress list Co-authored-by: KaKi87 <KaKi87@pm.me> * Fix install failure: use apksigner v2/v3 and bundle arm64 native libs Target SDK 36 requires APK Signature Scheme v2+, but jarsigner only produces v1 signatures, causing Android to reject the install. - Sign with apksigner (v1+v2+v3) instead of jarsigner - Add arm64-v8a native libraries from universal Soul Browser 1.4.79 - Set extractNativeLibs=true for reliable sideload installs - Commit stable debug keystore for consistent signatures across builds Co-authored-by: KaKi87 <KaKi87@pm.me> * Add committed debug keystore for consistent APK signatures Co-authored-by: KaKi87 <KaKi87@pm.me> * Fix startup crash: use original classes2.dex desugar libraries Apktool recompiles smali_classes2 into a broken classes2.dex, causing ClassNotFoundException for j$.com.android.tools.r8.a at ML Kit init. Inject the original classes2.dex (Java 8+ desugar libs) after apktool build instead of using the recompiled version. Co-authored-by: KaKi87 <KaKi87@pm.me> * Fix missing drawable resources from density split APKs The base APK is an app bundle module; density-specific drawables like seek_thumb_nor_b live in config.xhdpi.apk and were missing after rebuild, causing Resources$NotFoundException at runtime. - Merge non-9-patch resources from split APKs before apktool build - Sync public.xml IDs from R smali only when backing files exist - Add 713 density-specific resource IDs to public.xml Co-authored-by: KaKi87 <KaKi87@pm.me> --------- Co-authored-by: Cursor Agent <cursoragent@cursor.com>
74 lines
2.2 KiB
Java
74 lines
2.2 KiB
Java
package net.lingala.zip4j.crypto.PBKDF2;
|
|
|
|
/* loaded from: classes4.dex */
|
|
public class PBKDF2Engine {
|
|
|
|
/* renamed from: a, reason: collision with root package name */
|
|
public final PBKDF2Parameters f21983a;
|
|
public MacBasedPRF b = null;
|
|
|
|
public PBKDF2Engine(PBKDF2Parameters pBKDF2Parameters) {
|
|
this.f21983a = pBKDF2Parameters;
|
|
}
|
|
|
|
public final byte[] a(char[] cArr, int i) {
|
|
int i2;
|
|
int i3;
|
|
cArr.getClass();
|
|
byte[] bArr = new byte[cArr.length];
|
|
int i4 = 0;
|
|
for (int i5 = 0; i5 < cArr.length; i5++) {
|
|
bArr[i5] = (byte) cArr[i5];
|
|
}
|
|
if (this.b == null) {
|
|
this.b = new MacBasedPRF();
|
|
}
|
|
this.b.a(bArr);
|
|
if (i == 0) {
|
|
i2 = this.b.b;
|
|
} else {
|
|
i2 = i;
|
|
}
|
|
MacBasedPRF macBasedPRF = this.b;
|
|
byte[] bArr2 = this.f21983a.f21984a;
|
|
if (bArr2 == null) {
|
|
bArr2 = new byte[0];
|
|
}
|
|
int i6 = macBasedPRF.b;
|
|
if (i2 % i6 > 0) {
|
|
i3 = 1;
|
|
} else {
|
|
i3 = 0;
|
|
}
|
|
int i7 = (i2 / i6) + i3;
|
|
int i8 = i2 - ((i7 - 1) * i6);
|
|
byte[] bArr3 = new byte[i7 * i6];
|
|
int i9 = 0;
|
|
for (int i10 = 1; i10 <= i7; i10++) {
|
|
int i11 = macBasedPRF.b;
|
|
byte[] bArr4 = new byte[i11];
|
|
byte[] bArr5 = new byte[bArr2.length + 4];
|
|
System.arraycopy(bArr2, i4, bArr5, i4, bArr2.length);
|
|
int length = bArr2.length;
|
|
bArr5[length] = (byte) (i10 / 16777216);
|
|
bArr5[length + 1] = (byte) (i10 / 65536);
|
|
bArr5[length + 2] = (byte) (i10 / 256);
|
|
bArr5[length + 3] = (byte) i10;
|
|
for (int i12 = 0; i12 < 1000; i12++) {
|
|
bArr5 = macBasedPRF.f21982a.doFinal(bArr5);
|
|
for (int i13 = 0; i13 < i11; i13++) {
|
|
bArr4[i13] = (byte) (bArr4[i13] ^ bArr5[i13]);
|
|
}
|
|
}
|
|
i4 = 0;
|
|
System.arraycopy(bArr4, 0, bArr3, i9, i11);
|
|
i9 += i6;
|
|
}
|
|
if (i8 < i6) {
|
|
byte[] bArr6 = new byte[i2];
|
|
System.arraycopy(bArr3, i4, bArr6, i4, i2);
|
|
return bArr6;
|
|
}
|
|
return bArr3;
|
|
}
|
|
}
|