summaryrefslogtreecommitdiffstats
path: root/bcprov/src/main/java/org/bouncycastle/crypto/params/CCMParameters.java
blob: 4924dcca513724719bb122a4ec2b056642ed827b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package org.bouncycastle.crypto.params;

/**
 * @deprecated use AEADParameters
 */
public class CCMParameters
    extends 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)
    {
        super(key, macSize, nonce, associatedText);
    }
}