16 lines
395 B
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;
|
||
|
}
|
||
|
}
|