package org.snmp4j.security;

/* JADX INFO: loaded from: classes.dex */
public class DecryptParams {
    public byte[] array;
    public int length;
    public int offset;

    public DecryptParams(byte[] bArr, int i2, int i3) {
        this.array = bArr;
        this.offset = i2;
        this.length = i3;
    }

    public void setValues(byte[] bArr, int i2, int i3) {
        this.array = bArr;
        this.offset = i2;
        this.length = i3;
    }

    public DecryptParams() {
        this.array = null;
        this.offset = 0;
        this.length = 0;
    }
}
