package p421.p433.p434.p435.p436;

import java.security.InvalidKeyException;
import java.security.NoSuchAlgorithmException;
import javax.crypto.Mac;
import javax.crypto.spec.SecretKeySpec;

/* JADX INFO: renamed from: ޏ.ؠ.֏.ؠ.ނ.֏, reason: contains not printable characters */
/* JADX INFO: loaded from: classes.dex */
public class C6776 {

    /* JADX INFO: renamed from: ֏, reason: contains not printable characters */
    public Mac f19591;

    /* JADX INFO: renamed from: ؠ, reason: contains not printable characters */
    public int f19592;

    /* JADX INFO: renamed from: ހ, reason: contains not printable characters */
    public String f19593;

    public C6776(String str) {
        this.f19593 = str;
        try {
            Mac mac = Mac.getInstance(str);
            this.f19591 = mac;
            this.f19592 = mac.getMacLength();
        } catch (NoSuchAlgorithmException e) {
            throw new RuntimeException(e);
        }
    }

    /* JADX INFO: renamed from: ֏, reason: contains not printable characters */
    public void m9934(byte[] bArr) {
        try {
            this.f19591.init(new SecretKeySpec(bArr, this.f19593));
        } catch (InvalidKeyException e) {
            throw new RuntimeException(e);
        }
    }
}
