01: package org.bouncycastle.crypto.params;
02:
03: public class CCMParameters extends AEADParameters {
04: /**
05: * Base constructor.
06: *
07: * @param key key to be used by underlying cipher
08: * @param macSize macSize in bits
09: * @param nonce nonce to be used
10: * @param associatedText associated text, if any
11: */
12: public CCMParameters(KeyParameter key, int macSize, byte[] nonce,
13: byte[] associatedText) {
14: super(key, macSize, nonce, associatedText);
15: }
16: }
|