Initializes a new instance of the AeadParameters class

Namespace: Org.BouncyCastle.Crypto.Parameters
Assembly: ITextSharp (in ITextSharp.dll) Version: 4.1.6.0

Syntax

C#
public AeadParameters(
	KeyParameter key,
	int macSize,
	byte[] nonce,
	byte[] associatedText
)
Visual Basic
Public Sub New ( _
	key As KeyParameter, _
	macSize As Integer, _
	nonce As Byte(), _
	associatedText As Byte() _
)
Visual C++
public:
AeadParameters(
	KeyParameter^ key, 
	int macSize, 
	array<unsigned char>^ nonce, 
	array<unsigned char>^ associatedText
)

Parameters

key
Type: Org.BouncyCastle.Crypto.Parameters..::..KeyParameter
macSize
Type: System..::..Int32
nonce
Type: array<System..::..Byte>[]()[][]
associatedText
Type: array<System..::..Byte>[]()[][]

See Also