Class AEADCipher
- java.lang.Object
-
- javacardx.crypto.Cipher
-
- javacardx.crypto.AEADCipher
-
public abstract class AEADCipher extends Cipher
The AEADCipher class is the abstract base class for Authenticated Encryption with Associated Data (AEAD) ciphers.Examples of AEAD algorithms are the GCM and CCM modes of operation for AES.
AEAD ciphers can be created by the
Cipher.getInstancemethod using theALG_AES_GCMandALG_AES_CCMalgorithm constants. The returnedCipherinstance should then be cast toAEADCipher.- Since:
- 3.0.5
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class javacardx.crypto.Cipher
Cipher.OneShot
-
-
Field Summary
Fields Modifier and Type Field Description static byteALG_AES_CCMCipher algorithmALG_AES_CCMprovides a cipher using AES in Counter with CBC-MAC mode as specified in RFC 3610.static byteALG_AES_GCMCipher algorithmALG_AES_GCMprovides a cipher using AES in Galois/Counter Mode as specified in NIST SP 800-38D, November 2007.static byteCIPHER_AES_CCMCipher algorithm CIPHER_AES_CCM choice for the cipherAlgorithm parameter of theCipher.getInstance(byte, byte, boolean)method; the paddingAlgorithm must be set toPAD_NULL.static byteCIPHER_AES_GCMCipher algorithm CIPHER_AES_GCM choice for the cipherAlgorithm parameter of theCipher.getInstance(byte, byte, boolean)method; the paddingAlgorithm must be set toPAD_NULL.-
Fields inherited from class javacardx.crypto.Cipher
ALG_AES_BLOCK_128_CBC_NOPAD, ALG_AES_BLOCK_128_ECB_NOPAD, ALG_AES_BLOCK_192_CBC_NOPAD, ALG_AES_BLOCK_192_ECB_NOPAD, ALG_AES_BLOCK_256_CBC_NOPAD, ALG_AES_BLOCK_256_ECB_NOPAD, ALG_AES_CBC_ISO9797_M1, ALG_AES_CBC_ISO9797_M2, ALG_AES_CBC_PKCS5, ALG_AES_CFB, ALG_AES_CTR, ALG_AES_ECB_ISO9797_M1, ALG_AES_ECB_ISO9797_M2, ALG_AES_ECB_PKCS5, ALG_AES_XTS, ALG_DES_CBC_ISO9797_M1, ALG_DES_CBC_ISO9797_M2, ALG_DES_CBC_NOPAD, ALG_DES_CBC_PKCS5, ALG_DES_ECB_ISO9797_M1, ALG_DES_ECB_ISO9797_M2, ALG_DES_ECB_NOPAD, ALG_DES_ECB_PKCS5, ALG_KOREAN_SEED_CBC_NOPAD, ALG_KOREAN_SEED_ECB_NOPAD, ALG_RSA_ISO14888, ALG_RSA_ISO9796, ALG_RSA_NOPAD, ALG_RSA_PKCS1, ALG_RSA_PKCS1_OAEP, CIPHER_AES_CBC, CIPHER_AES_CFB, CIPHER_AES_CTR, CIPHER_AES_ECB, CIPHER_AES_XTS, CIPHER_DES_CBC, CIPHER_DES_ECB, CIPHER_KOREAN_SEED_CBC, CIPHER_KOREAN_SEED_ECB, CIPHER_RSA, CIPHER_SM2, CIPHER_SM4_CBC, CIPHER_SM4_ECB, MODE_DECRYPT, MODE_ENCRYPT, PAD_ISO9796, PAD_ISO9796_MR, PAD_ISO9796_MR_SCHEME_2, PAD_ISO9796_MR_SCHEME_3, PAD_ISO9797_1_M1_ALG3, PAD_ISO9797_1_M2_ALG3, PAD_ISO9797_M1, PAD_ISO9797_M2, PAD_NOPAD, PAD_NULL, PAD_PKCS1, PAD_PKCS1_OAEP, PAD_PKCS1_OAEP_SHA224, PAD_PKCS1_OAEP_SHA256, PAD_PKCS1_OAEP_SHA3_224, PAD_PKCS1_OAEP_SHA3_256, PAD_PKCS1_OAEP_SHA3_384, PAD_PKCS1_OAEP_SHA3_512, PAD_PKCS1_OAEP_SHA384, PAD_PKCS1_OAEP_SHA512, PAD_PKCS1_PSS, PAD_PKCS5, PAD_RFC2409
-
-
Constructor Summary
Constructors Modifier Constructor Description protectedAEADCipher()Avoid instantiation, compatible with protected constructor of Cipher.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description abstract shortdoFinal(byte[] inBuff, short inOffset, short inLength, byte[] outBuff, short outOffset)Generates encrypted/decrypted output from all/last input data.abstract voidinit(Key theKey, byte theMode)Initializes theCipherobject with the appropriateKey.abstract voidinit(Key theKey, byte theMode, byte[] bArray, short bOff, short bLen)Initializes theCipherobject with the appropriate Key and algorithm specific parameters.abstract voidinit(Key theKey, byte theMode, byte[] nonceBuf, short nonceOff, short nonceLen, short adataLen, short messageLen, short tagSize)Initializes thisCipherinstance to encrypt or decrypt a with the given key, nonce, AAD size and message size.abstract shortretrieveTag(byte[] tagBuf, short tagOff, short tagLen)RetrievestagLenbytes from the calculated authentication tag.abstract shortupdate(byte[] inBuff, short inOffset, short inLength, byte[] outBuff, short outOffset)Generates encrypted/decrypted output from input data.abstract voidupdateAAD(byte[] aadBuf, short aadOff, short aadLen)Continues a multi-part update of the Additional Associated Data (AAD) that will be verified by the authentication tag.abstract booleanverifyTag(byte[] receivedTagBuf, short receivedTagOff, short receivedTagLen, short requiredTagLen)Verifies the authentication tag using the number of bits set inrequiredTagLenbits.-
Methods inherited from class javacardx.crypto.Cipher
getAlgorithm, getCipherAlgorithm, getInstance, getInstance, getPaddingAlgorithm
-
-
-
-
Field Detail
-
CIPHER_AES_GCM
public static final byte CIPHER_AES_GCM
Cipher algorithm CIPHER_AES_GCM choice for the cipherAlgorithm parameter of theCipher.getInstance(byte, byte, boolean)method; the paddingAlgorithm must be set toPAD_NULL. The cipher algorithm provides a cipher using AES Galois/Counter Mode as specified in NIST SP 800-38D, November 2007. To use the AEAD properties of the instance returned it is required to cast the returned instance toAEADCipher.- Since:
- 3.0.5
- See Also:
- Constant Field Values
-
CIPHER_AES_CCM
public static final byte CIPHER_AES_CCM
Cipher algorithm CIPHER_AES_CCM choice for the cipherAlgorithm parameter of theCipher.getInstance(byte, byte, boolean)method; the paddingAlgorithm must be set toPAD_NULL. The cipher algorithm provides a cipher using AES in Counter with CBC-MAC mode as specified in RFC 3610. To use the AEAD properties of the instance returned it is required to cast the returned instance toAEADCipher.- Since:
- 3.0.5
- See Also:
- Constant Field Values
-
ALG_AES_GCM
public static final byte ALG_AES_GCM
Cipher algorithmALG_AES_GCMprovides a cipher using AES in Galois/Counter Mode as specified in NIST SP 800-38D, November 2007. To use the AEAD properties of the instance returned byCipher.getInstance(byte, boolean), it is required to cast the instance toAEADCipher- Since:
- 3.0.5
- See Also:
- Constant Field Values
-
ALG_AES_CCM
public static final byte ALG_AES_CCM
Cipher algorithmALG_AES_CCMprovides a cipher using AES in Counter with CBC-MAC mode as specified in RFC 3610. To use the AEAD properties of the instance returned byCipher.getInstance(byte, boolean), it is required to cast the instance toAEADCipher- Since:
- 3.0.5
- See Also:
- Constant Field Values
-
-
Method Detail
-
init
public abstract void init(Key theKey, byte theMode) throws CryptoException
Initializes theCipherobject with the appropriateKey. This method should be used for algorithms which do not need initialization parameters or use default parameter values.init()must be used to update theCipherobject with a new key. If theKeyobject is modified after invoking theinit()method, the behavior of theupdate()anddoFinal()methods is unspecified.The
Keyis checked for consistency with theCipheralgorithm. For example, the key type must be matched. For elliptic curve algorithms, the key must represent a valid point on the curve's domain parameters. Additional key component/domain parameter strength checks are implementation specific.Note:
- AES, DES, triple DES and Korean SEED algorithms used in modes requiring an initial vector (like CBC, CFB, CTR, XTS modes) will use 0 for initial vector(IV) if this method is used.
- For optimal performance, when the
theKeyparameter is a transient key, the implementation should, whenever possible, use transient space for internal storage.
- AEADCipher in GCM mode will use 0 for initial vector(IV) if this method is used.
- Specified by:
initin classCipher- Parameters:
theKey- the key object to use for encrypting or decryptingtheMode- one ofMODE_DECRYPTorMODE_ENCRYPT- Throws:
CryptoException- with the following reason codes:CryptoException.ILLEGAL_VALUEiftheModeoption is an undefined value or if theKeyis inconsistent with theCipherimplementation.CryptoException.UNINITIALIZED_KEYiftheKeyinstance is uninitialized.CryptoException.INVALID_INITif this method is called for an offline mode of encryption
- Since:
- 3.0.5
-
init
public abstract void init(Key theKey, byte theMode, byte[] bArray, short bOff, short bLen) throws CryptoException
Initializes theCipherobject with the appropriate Key and algorithm specific parameters.init()must be used to update theCipherobject with a new key. If theKeyobject is modified after invoking theinit()method, the behavior of theupdate()anddoFinal()methods is unspecified.The
Keyis checked for consistency with theCipheralgorithm. For example, the key type must be matched. For elliptic curve algorithms, the key must represent a valid point on the curve's domain parameters. Additional key component/domain parameter strength checks are implementation specific.Note:
- DES and triple DES algorithms in CBC mode expect an 8-byte parameter value for
the initial vector(IV) in
bArray. - AES algorithms expect a 16-byte parameter value in
bArrayfor the initial vector(IV) in CBC, CFB, CTR mode or for the value of the 128-bit tweak in XTS mode. - Korean SEED algorithms in CBC mode expect a 16-byte parameter value for
the initial vector(IV) in
bArray. - AES algorithms in ECB mode, DES algorithms in ECB mode, Korean SEED algorithm in ECB mode,
RSA, DSA and SM2 algorithms throw
CryptoException.ILLEGAL_VALUE. - For optimal performance, when the
theKeyparameter is a transient key, the implementation should, whenever possible, use transient space for internal storage.
- AEADCipher in GCM mode will use
barrayfor initial vector(IV) if this method is used.
- Specified by:
initin classCipher- Parameters:
theKey- the key object to use for encrypting or decrypting.theMode- one ofMODE_DECRYPTorMODE_ENCRYPTbArray- byte array containing algorithm specific initialization infobOff- offset within bArray where the algorithm specific data beginsbLen- byte length of algorithm specific parameter data- Throws:
CryptoException- with the following reason codes:CryptoException.ILLEGAL_VALUEiftheModeoption is an undefined value or if a byte array parameter option is not supported by the algorithm or if thebLenis an incorrect byte length for the algorithm specific data or if theKeyis inconsistent with theCipherimplementation.CryptoException.UNINITIALIZED_KEYiftheKeyinstance is uninitialized.CryptoException.INVALID_INITif this method is called for an offline mode of encryption
- Since:
- 3.0.5
- DES and triple DES algorithms in CBC mode expect an 8-byte parameter value for
the initial vector(IV) in
-
init
public abstract void init(Key theKey, byte theMode, byte[] nonceBuf, short nonceOff, short nonceLen, short adataLen, short messageLen, short tagSize) throws CryptoException
Initializes thisCipherinstance to encrypt or decrypt a with the given key, nonce, AAD size and message size.This method should only be called for offline cipher mode encryption such as
ALG_AES_CCM. In offline cipher mode encryption the length of the authentication data, message size and authentication tag must be known in advance.- Parameters:
theKey- the key object to use for encrypting or decryptingtheMode- one ofMODE_DECRYPTorMODE_ENCRYPTadataLen- the length of the authenticated data as presented in theupdateAADmethodnonceBuf- a buffer holding the noncenonceOff- the offset in the buffer of the noncenonceLen- the length in the buffer of the noncemessageLen- the length of the message as presented in theupdateanddoFinalmethodstagSize- the size in in bytes of the authentication tag- Throws:
CryptoException- with the following reason codes:ILLEGAL_VALUEif any of the values are outside the accepted rangeCryptoException.UNINITIALIZED_KEYiftheKeyinstance is uninitialized.CryptoException.INVALID_INITif this method is called for an online mode of encryption
- Since:
- 3.0.5
-
updateAAD
public abstract void updateAAD(byte[] aadBuf, short aadOff, short aadLen) throws CryptoExceptionContinues a multi-part update of the Additional Associated Data (AAD) that will be verified by the authentication tag. The data is not included with the ciphertext by this method.- Parameters:
aadBuf- the buffer containing the AAD dataaadOff- the offset of the AAD data in the bufferaadLen- the length in bytes of the AAD data in the buffer- Throws:
CryptoException- with the following reason codes:ILLEGAL_USEif updating the AAD value is conflicting with the state of this cipherILLEGAL_VALUEfor CCM if the total AAD size provided, in all calls to this method, exceeds the AAD size given in the initial block used as IV
- Since:
- 3.0.5
-
update
public abstract short update(byte[] inBuff, short inOffset, short inLength, byte[] outBuff, short outOffset) throws CryptoExceptionGenerates encrypted/decrypted output from input data. This method is intended for multiple-part encryption/decryption operations.This method requires temporary storage of intermediate results. In addition, if the input data length is not block aligned (multiple of block size) then additional internal storage may be allocated at this time to store a partial input data block. This may result in additional resource consumption and/or slow performance.
This method should only be used if all the input data required for the cipher is not available in one byte array. If all the input data required for the cipher is located in a single byte array, use of the
doFinal()method to process all of the input data is recommended. ThedoFinal()method must be invoked to complete processing of any remaining input data buffered by one or more calls to theupdate()method.Notes:
- When using block-aligned data (multiple of block size),
if the input buffer,
inBuffand the output buffer,outBuffare the same array, then the output data area must not partially overlap the input data area such that the input data is modified before it is used; ifinBuff==outBuffand
inOffset < outOffset < inOffset+inLength, incorrect output may result. - When non-block aligned data is presented as input data, no amount of input
and output buffer data overlap is allowed;
if
inBuff==outBuffand
outOffset < inOffset+inLength, incorrect output may result. - On decryption operations(except when ISO 9797 method 1 padding is used),
the padding bytes are not written to
outBuff. - On encryption and decryption operations,
block alignment considerations may require that
the number of bytes output into
outBuffbe larger or smaller thaninLengthor even 0. - If
inLengthis 0 this method does nothing.
In addition to returning a
shortresult, this method sets the result in an internal state which can be rechecked using assertion methods of theSensitiveResultclass, if supported by the platform.- Specified by:
updatein classCipher- Parameters:
inBuff- the input buffer of data to be encrypted/decryptedinOffset- the offset into the input buffer at which to begin encryption/decryptioninLength- the byte length to be encrypted/decryptedoutBuff- the output buffer, may be the same as the input bufferoutOffset- the offset into the output buffer where the resulting ciphertext/plaintext begins- Returns:
- number of bytes output in
outBuff - Throws:
CryptoException- with the following reason codes:INVALID_INITif thisCipherobject is not initialized.CryptoException.UNINITIALIZED_KEYif key not initialized.ILLEGAL_USE- for CCM if AAD is not provided while it is indicated in the initial block used as IV
- for CCM if the payload exceeds the payload size given in the initial block used as IV
- Since:
- 3.0.5
- When using block-aligned data (multiple of block size),
if the input buffer,
-
doFinal
public abstract short doFinal(byte[] inBuff, short inOffset, short inLength, byte[] outBuff, short outOffset) throws CryptoExceptionGenerates encrypted/decrypted output from all/last input data. This method must be invoked to complete a cipher operation. This method processes any remaining input data buffered by one or more calls to theupdate()method as well as input data supplied in theinBuffparameter.A call to this method also resets this
Cipherobject to the state it was in when previously initialized via a call toinit(). That is, the object is reset and available to encrypt or decrypt (depending on the operation mode that was specified in the call toinit()) more data. In addition, note that the initial vector(IV) used in AES, DES and Korean SEED algorithms will be reset to 0.Notes:
- When using block-aligned data (multiple of block size),
if the input buffer,
inBuffand the output buffer,outBuffrefer to the same array, or if any of these arguments refer to an array view sharing components with the other argument, then the output data area must not partially overlap the input data area such that the input data is modified before it is used.
Example: ifinBuff==outBuffandinOffset < outOffset < inOffset+inLength, incorrect output may result. - When non-block aligned data is presented as input data, no amount of input
and output buffer data overlap is allowed.
Example: ifinBuff==outBuffandoutOffset < inOffset+inLength, incorrect output may result. - AES, DES, triple DES and Korean SEED algorithms in CBC mode reset the initial vector(IV)
to 0. The initial vector(IV) can be re-initialized using the
init(Key, byte, byte[], short, short)method. - On decryption operations (except when ISO 9797 method 1 padding is used),
the padding bytes are not written to
outBuff. - On encryption and decryption operations, the number of bytes output into
outBuffmay be larger or smaller thaninLengthor even 0. - On decryption operations resulting in an
ArrayIndexOutOfBoundsException,outBuffmay be partially modified.
In addition to returning a
shortresult, this method sets the result in an internal state which can be rechecked using assertion methods of theSensitiveResultclass, if supported by the platform.- Specified by:
doFinalin classCipher- Parameters:
inBuff- the input buffer of data to be encrypted/decryptedinOffset- the offset into the input buffer at which to begin encryption/decryptioninLength- the byte length to be encrypted/decryptedoutBuff- the output buffer, may be the same as the input bufferoutOffset- the offset into the output buffer where the resulting output data begins- Returns:
- number of bytes output in
outBuff - Throws:
CryptoException- with the following reason codes:INVALID_INITif thisCipherobject is not initialized.UNINITIALIZED_KEYif key not initialized.ILLEGAL_USE- for CCM if all Additional Authenticated Data (AAD) was not provided
- for CCM if the total message size provided is not identical to the
messageLenparameter given in theinitmethod
- Since:
- 3.0.5
- When using block-aligned data (multiple of block size),
if the input buffer,
-
retrieveTag
public abstract short retrieveTag(byte[] tagBuf, short tagOff, short tagLen) throws CryptoExceptionRetrievestagLenbytes from the calculated authentication tag. Depending on the algorithm, only certain tag lengths may be supported.Note:
- This method may only be called for
MODE_ENCRYPTafterdoFinalhas been called.
In addition to returning a
shortresult, this method sets the result in an internal state which can be rechecked using assertion methods of theSensitiveResultclass, if supported by the platform.- Parameters:
tagBuf- the buffer that will contain the authentication tagtagOff- the offset of the authentication tag in the buffertagLen- the length in bytes of the authentication tag in the buffer- Returns:
- the tag length, as given by tagLen (for convenience)
- Throws:
CryptoException- with the following reason codesILLEGAL_USEifdoFinalhas not been calledILLEGAL_VALUEif the tag length is not supported
- Since:
- 3.0.5
- This method may only be called for
-
verifyTag
public abstract boolean verifyTag(byte[] receivedTagBuf, short receivedTagOff, short receivedTagLen, short requiredTagLen) throws CryptoExceptionVerifies the authentication tag using the number of bits set inrequiredTagLenbits. Depending on the algorithm, only certain tag lengths may be supported. For all algorithms the tag length must be a multiple of 8 bits.Note:
- This method may only be called for
MODE_DECRYPTafterdoFinalhas been called.
In addition to returning a
booleanresult, this method sets the result in an internal state which can be rechecked using assertion methods of theSensitiveResultclass, if supported by the platform.- Parameters:
receivedTagBuf- the buffer that will contain the received authentication tagreceivedTagOff- the offset of the received authentication tag in the bufferreceivedTagLen- the length in bytes of the received authentication tag in the bufferrequiredTagLen- the required length in bytes of the received authentication tag, usually a constant value- Returns:
trueif successfully verified,falseotherwise- Throws:
CryptoException- with the following reason codes:ILLEGAL_USEifdoFinalhas not been calledILLEGAL_VALUEif the tag length is not supported
- Since:
- 3.0.5
- This method may only be called for
-
-