Files
2026-04-05 01:00:07 -05:00

30 lines
886 B
Java
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
package p000;
import java.nio.charset.StandardCharsets;
/* JADX INFO: renamed from: Ϳ.Ϳ, reason: contains not printable characters */
/* JADX INFO: loaded from: classes.dex */
public final class C0000 {
/* JADX INFO: renamed from: Ԩ, reason: contains not printable characters */
public static byte[] m0(byte[] bArr, byte[] bArr2) {
int length = bArr.length;
int length2 = bArr2.length;
int i = 0;
int i2 = 0;
while (i < length) {
if (i2 >= length2) {
i2 = 0;
}
bArr[i] = (byte) (bArr[i] ^ bArr2[i2]);
i++;
i2++;
}
return bArr;
}
/* JADX INFO: renamed from: Ϳ, reason: contains not printable characters */
public String m1(byte[] bArr, byte[] bArr2) {
return new String(m0(bArr, bArr2), StandardCharsets.UTF_8);
}
}