Add decompiled APK source code (JADX)

- 28,932 files
- Full Java source code
- Smali files
- Resources

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
This commit is contained in:
2026-02-18 14:52:23 -08:00
parent cc210a65ea
commit f9d20bb3fc
26991 changed files with 2541449 additions and 0 deletions

View File

@@ -0,0 +1,43 @@
package com.google.android.gms.internal.ads;
import java.security.GeneralSecurityException;
import java.util.HashMap;
import java.util.Map;
/* loaded from: classes3.dex */
public final class zzgmg {
private static final zzgmg zza = new zzgmg();
private final Map zzb = new HashMap();
public static zzgmg zzb() {
return zza;
}
public final synchronized zzgek zza(String str) throws GeneralSecurityException {
if (!this.zzb.containsKey("AES128_GCM")) {
throw new GeneralSecurityException("Name AES128_GCM does not exist");
}
return (zzgek) this.zzb.get("AES128_GCM");
}
public final synchronized void zzc(String str, zzgek zzgekVar) throws GeneralSecurityException {
try {
if (!this.zzb.containsKey(str)) {
this.zzb.put(str, zzgekVar);
return;
}
if (((zzgek) this.zzb.get(str)).equals(zzgekVar)) {
return;
}
throw new GeneralSecurityException("Parameters object with name " + str + " already exists (" + String.valueOf(this.zzb.get(str)) + "), cannot insert " + String.valueOf(zzgekVar));
} catch (Throwable th) {
throw th;
}
}
public final synchronized void zzd(Map map) throws GeneralSecurityException {
for (Map.Entry entry : map.entrySet()) {
zzc((String) entry.getKey(), (zzgek) entry.getValue());
}
}
}