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

16 lines
395 B
Java
Raw Normal View History

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