#include <subsys/nrf_security/src/drivers/cracen/cracen_sw/include/cracen_sw_aead.h>
Perform a single software AEAD encryption.
- Parameters
-
| [in] | attributes | Key attributes. |
| [in] | key_buffer | Key material. |
| [in] | key_buffer_size | Size of key material. |
| [in] | alg | AEAD algorithm. |
| [in] | nonce | Nonce/IV. |
| [in] | nonce_length | Length of nonce. |
| [in] | additional_data | Additional data. |
| [in] | additional_data_length | Length of additional data. |
| [in] | plaintext | Plaintext to encrypt. |
| [in] | plaintext_length | Length of plaintext. |
| [out] | ciphertext | Output buffer for ciphertext and tag. |
| [in] | ciphertext_size | Size of ciphertext buffer. |
| [out] | ciphertext_length | Pointer to store actual output length. |
- Return values
-
| PSA_SUCCESS | Encryption completed successfully. |
| PSA_ERROR_NOT_SUPPORTED | Unsupported algorithm. |
| PSA_ERROR_BUFFER_TOO_SMALL | Output buffer too small. |
| PSA_ERROR_INVALID_ARGUMENT | Invalid parameters. |