Package org.bouncycastle.crypto.general
Class TripleDES.AuthParameters
java.lang.Object
org.bouncycastle.crypto.general.GeneralParameters<GeneralAlgorithm>
org.bouncycastle.crypto.general.GeneralParametersWithIV<T>
org.bouncycastle.crypto.general.GeneralAuthParameters<TripleDES.AuthParameters>
org.bouncycastle.crypto.general.TripleDES.AuthParameters
- All Implemented Interfaces:
AuthenticationParameters<TripleDES.AuthParameters>
,AuthenticationParametersWithIV<TripleDES.AuthParameters>
,Parameters
,ParametersWithIV<TripleDES.AuthParameters>
- Enclosing class:
- TripleDES
public static final class TripleDES.AuthParameters
extends GeneralAuthParameters<TripleDES.AuthParameters>
Parameters for Triple-DES non-FIPS AEAD and MAC modes..
-
Field Summary
Fields inherited from class org.bouncycastle.crypto.general.GeneralAuthParameters
macLenInBits
Fields inherited from class org.bouncycastle.crypto.general.GeneralParametersWithIV
blockSize, iv
-
Constructor Summary
ConstructorsConstructorDescriptionAuthParameters
(GeneralAlgorithm algorithm) Base constructor - the algorithm, null IV. -
Method Summary
Modifier and TypeMethodDescriptionprotected TripleDES.AuthParameters
create
(GeneralAlgorithm algorithm, byte[] iv, int macSizeInBits) Methods inherited from class org.bouncycastle.crypto.general.GeneralAuthParameters
create, getMACSizeInBits, withIV, withMACSize
Methods inherited from class org.bouncycastle.crypto.general.GeneralParametersWithIV
getIV, withIV, withIV
Methods inherited from class org.bouncycastle.crypto.general.GeneralParameters
getAlgorithm
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface org.bouncycastle.crypto.Parameters
getAlgorithm
Methods inherited from interface org.bouncycastle.crypto.ParametersWithIV
getIV, withIV, withIV
-
Constructor Details
-
AuthParameters
Base constructor - the algorithm, null IV. In this case the tag length defaults to the 64 for CMAC, 32 bits otherwise.- Parameters:
algorithm
- algorithm mode.
-
-
Method Details
-
create
-