Fix missed documentation header

Signed-off-by: Paul Elliott <paul.elliott@arm.com>
This commit is contained in:
Paul Elliott 2021-09-19 22:38:27 +01:00
parent ec95cc9489
commit 8eec8d4436

View File

@ -279,32 +279,29 @@ typedef enum
/*! /*!
* \brief Internal Function for AEAD multipart tests. * \brief Internal Function for AEAD multipart tests.
*
* \param key_type_arg Type of key passed in * \param key_type_arg Type of key passed in
* \param key_data The encryption / decryption key data * \param key_data The encryption / decryption key data
* \param alg_arg The type of algorithm used * \param alg_arg The type of algorithm used
* \param nonce Nonce data * \param nonce Nonce data
* \param additional_data Additional data * \param additional_data Additional data
* \param ad_part_len If not -1, the length of chunks to * \param ad_part_len_arg If not -1, the length of chunks to
* feed additional data in to be encrypted / * feed additional data in to be encrypted /
* decrypted. If -1, no chunking. * decrypted. If -1, no chunking.
* \param input_data Data to encrypt / decrypt * \param input_data Data to encrypt / decrypt
* \param data_part_len If not -1, the length of chunks to feed the * \param data_part_len_arg If not -1, the length of chunks to feed
* data in to be encrypted / decrypted. If -1, * the data in to be encrypted / decrypted. If
* no chunking * -1, no chunking
* \param do_set_lengths If non-zero, then set lengths prior to * \param set_lengths_method A member of the setlengths_method enum is
* calling encryption / decryption. * expected here, this controls whether or not
* to set lengths, and in what order with
* respect to set nonce.
* \param expected_output Expected output * \param expected_output Expected output
* \param expect_valid_signature If non zero, we expect the signature to be * \param expect_valid_signature If non zero, we expect the signature to be
* valid * valid
* \param is_encrypt If non-zero this is an encryption operation. * \param is_encrypt If non-zero this is an encryption operation.
* \param do_zero_parts If non-zero, interleave zero length chunks * \param do_zero_parts If non-zero, interleave zero length chunks
* with normal length chunks * with normal length chunks.
* \param swap_set_functions If non-zero, swap the order of set lengths
* and set nonce.
*
* \return int Zero on failure, non-zero on success. * \return int Zero on failure, non-zero on success.
*
*/ */
static int aead_multipart_internal_func( int key_type_arg, data_t *key_data, static int aead_multipart_internal_func( int key_type_arg, data_t *key_data,
int alg_arg, int alg_arg,