29 lines
650 B
Java
29 lines
650 B
Java
package org.bouncycastle.crypto.params;
|
|
|
|
import org.bouncycastle.crypto.CipherParameters;
|
|
|
|
/* loaded from: classes6.dex */
|
|
public class IESParameters implements CipherParameters {
|
|
private byte[] derivation;
|
|
private byte[] encoding;
|
|
private int macKeySize;
|
|
|
|
public int getMacKeySize() {
|
|
return this.macKeySize;
|
|
}
|
|
|
|
public byte[] getEncodingV() {
|
|
return this.encoding;
|
|
}
|
|
|
|
public byte[] getDerivationV() {
|
|
return this.derivation;
|
|
}
|
|
|
|
public IESParameters(byte[] bArr, byte[] bArr2, int i) {
|
|
this.derivation = bArr;
|
|
this.encoding = bArr2;
|
|
this.macKeySize = i;
|
|
}
|
|
}
|