13 lines
285 B
C#
13 lines
285 B
C#
using System;
|
|
|
|
namespace Org.BouncyCastle.Crypto.Parameters;
|
|
|
|
[Obsolete("Use AeadParameters")]
|
|
public class CcmParameters : AeadParameters
|
|
{
|
|
public CcmParameters(KeyParameter key, int macSize, byte[] nonce, byte[] associatedText)
|
|
: base(key, macSize, nonce, associatedText)
|
|
{
|
|
}
|
|
}
|