init commit
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
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)
|
||||
{
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user