Package org.bouncycastle.crypto.params
Class IESWithCipherParameters
- java.lang.Object
-
- org.bouncycastle.crypto.params.IESParameters
-
- org.bouncycastle.crypto.params.IESWithCipherParameters
-
- All Implemented Interfaces:
CipherParameters
public class IESWithCipherParameters extends IESParameters
-
-
Constructor Summary
Constructors Constructor Description IESWithCipherParameters(byte[] derivation, byte[] encoding, int macKeySize, int cipherKeySize)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
getCipherKeySize()
-
Methods inherited from class org.bouncycastle.crypto.params.IESParameters
getDerivationV, getEncodingV, getMacKeySize
-
-
-
-
Constructor Detail
-
IESWithCipherParameters
public IESWithCipherParameters(byte[] derivation, byte[] encoding, int macKeySize, int cipherKeySize)
- Parameters:
derivation
- the derivation parameter for the KDF function.encoding
- the encoding parameter for the KDF function.macKeySize
- the size of the MAC key (in bits).cipherKeySize
- the size of the associated Cipher key (in bits).
-
-