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

16 lines
395 B
Java

package org.bouncycastle.crypto.params;
/* loaded from: classes6.dex */
public class IESWithCipherParameters extends IESParameters {
private int cipherKeySize;
public int getCipherKeySize() {
return this.cipherKeySize;
}
public IESWithCipherParameters(byte[] bArr, byte[] bArr2, int i, int i2) {
super(bArr, bArr2, i);
this.cipherKeySize = i2;
}
}