Package org.bouncycastle.crypto.params
Class CCMParameters
- java.lang.Object
-
- org.bouncycastle.crypto.params.AEADParameters
-
- org.bouncycastle.crypto.params.CCMParameters
-
- All Implemented Interfaces:
CipherParameters
public class CCMParameters extends AEADParameters
Deprecated.use AEADParameters
-
-
Constructor Summary
Constructors Constructor Description CCMParameters(KeyParameter key, int macSize, byte[] nonce, byte[] associatedText)
Deprecated.Base constructor.
-
Method Summary
-
Methods inherited from class org.bouncycastle.crypto.params.AEADParameters
getAssociatedText, getKey, getMacSize, getNonce
-
-
-
-
Constructor Detail
-
CCMParameters
public CCMParameters(KeyParameter key, int macSize, byte[] nonce, byte[] associatedText)
Deprecated.Base constructor.- Parameters:
key
- key to be used by underlying ciphermacSize
- macSize in bitsnonce
- nonce to be usedassociatedText
- associated text, if any
-
-