package org.snmp4j.security;

import org.snmp4j.smi.OID;

/* JADX INFO: loaded from: classes.dex */
public class AuthHMAC192SHA256 extends AuthSHA2 {
    private static final int AUTH_CODE_LENGTH = 24;
    private static final int DIGEST_LENGTH = 32;
    public static final OID ID = new OID(new int[]{1, 3, 6, 1, 6, 3, 10, 1, 1, 5});

    public AuthHMAC192SHA256() {
        super("SHA-256", ID, 32, 24);
    }
}
