15 lines
368 B
C#
15 lines
368 B
C#
namespace Org.BouncyCastle.Crypto.Parameters;
|
|
|
|
public class IesWithCipherParameters : IesParameters
|
|
{
|
|
private int cipherKeySize;
|
|
|
|
public int CipherKeySize => cipherKeySize;
|
|
|
|
public IesWithCipherParameters(byte[] derivation, byte[] encoding, int macKeySize, int cipherKeySize)
|
|
: base(derivation, encoding, macKeySize)
|
|
{
|
|
this.cipherKeySize = cipherKeySize;
|
|
}
|
|
}
|