summary refs log tree commit diff
path: root/crypto/src/crypto/parameters/CcmParameters.cs
blob: d4459081c7751b2aeb70538dd56a4d11b743fca1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
using System;

namespace Org.BouncyCastle.Crypto.Parameters
{
    [Obsolete("Use AeadParameters")]
    public class CcmParameters
        : AeadParameters 
    {
		/**
		 * Base constructor.
		 * 
		 * @param key key to be used by underlying cipher
		 * @param macSize macSize in bits
		 * @param nonce nonce to be used
		 * @param associatedText associated text, if any
		 */
		public CcmParameters(
			KeyParameter	key,
			int				macSize,
			byte[]			nonce,
			byte[]			associatedText)
			: base(key, macSize, nonce, associatedText)
		{
		}
	}
}