Files
SuperVPN/output/Libraries/BouncyCastle.Crypto/Org/BouncyCastle/Crypto/Parameters/IesWithCipherParameters.cs
2025-10-09 09:57:24 +09:00

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;
}
}