Concrete base class to assist with implementing EAX for 128-bit block ciphers.
More...
#include <EAX.h>
|
size_t | keySize () const |
| Default size of the key for this cipher, in bytes. More...
|
|
size_t | ivSize () const |
| Size of the initialization vector for this cipher, in bytes. More...
|
|
size_t | tagSize () const |
| Returns the size of the authentication tag. More...
|
|
bool | setKey (const uint8_t *key, size_t len) |
| Sets the key to use for future encryption and decryption operations. More...
|
|
bool | setIV (const uint8_t *iv, size_t len) |
| Sets the initialization vector to use for future encryption and decryption operations. More...
|
|
void | encrypt (uint8_t *output, const uint8_t *input, size_t len) |
| Encrypts an input buffer and writes the ciphertext to an output buffer. More...
|
|
void | decrypt (uint8_t *output, const uint8_t *input, size_t len) |
| Decrypts an input buffer and writes the plaintext to an output buffer. More...
|
|
void | addAuthData (const void *data, size_t len) |
| Adds extra data that will be authenticated but not encrypted. More...
|
|
void | computeTag (void *tag, size_t len) |
| Finalizes the encryption process and computes the authentication tag. More...
|
|
bool | checkTag (const void *tag, size_t len) |
| Finalizes the decryption process and checks the authentication tag. More...
|
|
void | clear () |
| Clears all security-sensitive state from this cipher. More...
|
|
| AuthenticatedCipher () |
| Constructs a new authenticated cipher.
|
|
virtual | ~AuthenticatedCipher () |
| Destroys this authenticated cipher.
|
|
| Cipher () |
| Constructs a new cipher object.
|
|
virtual | ~Cipher () |
| Destroys this cipher object. More...
|
|
Concrete base class to assist with implementing EAX for 128-bit block ciphers.
References: https://en.wikipedia.org/wiki/EAX_mode, http://web.cs.ucdavis.edu/~rogaway/papers/eax.html
- See also
- EAX
Definition at line 30 of file EAX.h.
◆ EAXCommon()
Constructs a new cipher in EAX mode.
This constructor must be followed by a call to setBlockCipher().
Definition at line 43 of file EAX.cpp.
◆ addAuthData()
void EAXCommon::addAuthData |
( |
const void * |
data, |
|
|
size_t |
len |
|
) |
| |
|
virtual |
Adds extra data that will be authenticated but not encrypted.
- Parameters
-
data | The extra data to be authenticated. |
len | The number of bytes of extra data to be authenticated. |
This function must be called before the first call to encrypt() or decrypt(). That is, it is assumed that all extra data for authentication is available before the first payload data block and that it will be prepended to the payload for authentication. If the subclass needs to process the extra data after the payload, then it is responsible for saving data away until it is needed during computeTag() or checkTag().
This function can be called multiple times with separate extra data blocks for authentication. All such data will be concatenated into a single block for authentication purposes.
Implements AuthenticatedCipher.
Definition at line 116 of file EAX.cpp.
◆ checkTag()
bool EAXCommon::checkTag |
( |
const void * |
tag, |
|
|
size_t |
len |
|
) |
| |
|
virtual |
Finalizes the decryption process and checks the authentication tag.
- Parameters
-
tag | The tag value from the incoming ciphertext to be checked. |
len | The length of the tag value in bytes, which may be less than tagSize(). |
- Returns
- Returns true if the tag is identical to the first len bytes of the authentication tag that was calculated during the decryption process. Returns false otherwise.
This function must be called after the final block of ciphertext is passed to decrypt() to determine if the data could be authenticated.
- Note
- Authenticated cipher modes usually require that if the tag could not be verified, then all of the data that was previously decrypted must be discarded. It is unwise to use the decrypted data for any purpose before it can be verified. Callers are responsible for ensuring that any data returned via previous calls to decrypt() is discarded if checkTag() returns false.
- See also
- computeTag()
Implements AuthenticatedCipher.
Definition at line 130 of file EAX.cpp.
◆ clear()
void EAXCommon::clear |
( |
| ) |
|
|
virtual |
Clears all security-sensitive state from this cipher.
Security-sensitive information includes key schedules, initialization vectors, and any temporary state that is used by encrypt() or decrypt() which is stored in the cipher itself.
Implements Cipher.
Definition at line 141 of file EAX.cpp.
◆ computeTag()
void EAXCommon::computeTag |
( |
void * |
tag, |
|
|
size_t |
len |
|
) |
| |
|
virtual |
Finalizes the encryption process and computes the authentication tag.
- Parameters
-
tag | Points to the buffer to write the tag to. |
len | The length of the tag, which may be less than tagSize() to truncate the tag to the first len bytes. |
- See also
- checkTag()
Implements AuthenticatedCipher.
Definition at line 122 of file EAX.cpp.
◆ decrypt()
void EAXCommon::decrypt |
( |
uint8_t * |
output, |
|
|
const uint8_t * |
input, |
|
|
size_t |
len |
|
) |
| |
|
virtual |
Decrypts an input buffer and writes the plaintext to an output buffer.
- Parameters
-
output | The output buffer to write to, which may be the same buffer as input. The output buffer must have at least as many bytes as the input buffer. |
input | The input buffer to read from. |
len | The number of bytes to decrypt. |
The decrypt() function can be called multiple times with different regions of the ciphertext data.
- See also
- encrypt()
Implements Cipher.
Definition at line 108 of file EAX.cpp.
◆ encrypt()
void EAXCommon::encrypt |
( |
uint8_t * |
output, |
|
|
const uint8_t * |
input, |
|
|
size_t |
len |
|
) |
| |
|
virtual |
Encrypts an input buffer and writes the ciphertext to an output buffer.
- Parameters
-
output | The output buffer to write to, which may be the same buffer as input. The output buffer must have at least as many bytes as the input buffer. |
input | The input buffer to read from. |
len | The number of bytes to encrypt. |
The encrypt() function can be called multiple times with different regions of the plaintext data.
- See also
- decrypt()
Implements Cipher.
Definition at line 100 of file EAX.cpp.
◆ ivSize()
size_t EAXCommon::ivSize |
( |
| ) |
const |
|
virtual |
Size of the initialization vector for this cipher, in bytes.
If the cipher does not need an initialization vector, this function will return zero.
Implements Cipher.
Definition at line 59 of file EAX.cpp.
◆ keySize()
size_t EAXCommon::keySize |
( |
| ) |
const |
|
virtual |
Default size of the key for this cipher, in bytes.
If the cipher supports variable-sized keys, keySize() indicates the default or recommended key size. The cipher may support other key sizes.
- See also
- setKey(), ivSize()
Implements Cipher.
Definition at line 54 of file EAX.cpp.
◆ setBlockCipher()
Sets the block cipher to use for this EAX object.
- Parameters
-
cipher | The block cipher to use to implement EAX mode. This object must have a block size of 128 bits (16 bytes). |
Definition at line 54 of file EAX.h.
◆ setIV()
bool EAXCommon::setIV |
( |
const uint8_t * |
iv, |
|
|
size_t |
len |
|
) |
| |
|
virtual |
Sets the initialization vector to use for future encryption and decryption operations.
- Parameters
-
iv | The initialization vector to use. |
len | The length of the initialization vector in bytes. |
- Returns
- Returns false if the length is not supported.
Initialization vectors should be set before the first call to encrypt() or decrypt() after a setKey() call. If the initialization vector is changed after encryption or decryption begins, then the behaviour is undefined.
- Note
- The IV is not encoded into the output stream by encrypt(). The caller is responsible for communicating the IV to the other party.
- See also
- ivSize()
Implements Cipher.
Definition at line 76 of file EAX.cpp.
◆ setKey()
bool EAXCommon::setKey |
( |
const uint8_t * |
key, |
|
|
size_t |
len |
|
) |
| |
|
virtual |
Sets the key to use for future encryption and decryption operations.
- Parameters
-
key | The key to use. |
len | The length of the key in bytes. |
- Returns
- Returns false if the key length is not supported, or the key is somehow "weak" and unusable by this cipher.
Use clear() or the destructor to remove the key and any other sensitive data from the object once encryption or decryption is complete.
Calling setKey() resets the cipher. Any temporary data that was being retained for encrypting partial blocks will be abandoned.
- See also
- keySize(), clear()
Implements Cipher.
Definition at line 71 of file EAX.cpp.
◆ tagSize()
size_t EAXCommon::tagSize |
( |
| ) |
const |
|
virtual |
Returns the size of the authentication tag.
- Returns
- The size of the authentication tag in bytes.
By default this function should return the largest tag size supported by the authenticated cipher.
- See also
- computeTag()
Implements AuthenticatedCipher.
Definition at line 65 of file EAX.cpp.
The documentation for this class was generated from the following files: