what-the-bank/sources/org/bouncycastle/crypto/params/IESParameters.java

29 lines
650 B
Java
Raw Normal View History

2024-07-27 18:17:47 +07:00
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;
}
}