Fix documentation tags to be lower case

Signed-off-by: Gabor Mezei <gabor.mezei@arm.com>
This commit is contained in:
Gabor Mezei 2022-09-30 14:03:04 +02:00
parent e5b8585f1e
commit 86dfe384c2
No known key found for this signature in database
GPG key ID: F072ACA227ACD71D
2 changed files with 10 additions and 10 deletions

View file

@ -78,9 +78,9 @@ void mbedtls_mpi_core_bigendian_to_host( mbedtls_mpi_uint *A,
* \brief Perform a safe conditional copy of MPI which doesn't reveal whether
* the condition was true or not.
*
* \param[OUT] X The address of the first MPI. This must be initialized.
* \param[out] X The address of the first MPI. This must be initialized.
* It must have at least \p limbs limbs.
* \param[IN] A The address of the second MPI. This must be initialized.
* \param[in] A The address of the second MPI. This must be initialized.
* \param limbs The number of limbs of \p A.
* \param assign The condition deciding whether to perform the
* assignment or not. Must be either 0 or 1:
@ -103,9 +103,9 @@ void mbedtls_mpi_core_cond_assign( mbedtls_mpi_uint *X,
* \brief Perform a safe conditional swap of MPI which doesn't reveal whether
* the condition was true or not.
*
* \param[IN,OUT] X The address of the first MPI.
* \param[in,out] X The address of the first MPI.
* This must be initialized.
* \param[IN,OUT] Y The address of the second MPI.
* \param[in,out] Y The address of the second MPI.
* This must be initialized.
* \param limbs The number of limbs of \p X and \p Y.
* \param swap The condition deciding whether to perform

View file

@ -37,9 +37,9 @@
* \brief Perform a safe conditional copy of MPI which doesn't reveal whether
* the condition was true or not.
*
* \param[OUT] X The address of the first MPI. This must be initialized.
* \param[IN] A The address of the second MPI. This must be initialized.
* \param[IN] N The address of the modulus related to \p X and \p A.
* \param[out] X The address of the first MPI. This must be initialized.
* \param[in] A The address of the second MPI. This must be initialized.
* \param[in] N The address of the modulus related to \p X and \p A.
* \param assign The condition deciding whether to perform the
* assignment or not. Must be either 0 or 1:
* * \c 1: Perform the assignment `X = A`.
@ -61,9 +61,9 @@ void mbedtls_mpi_mod_raw_cond_assign( mbedtls_mpi_uint *X,
* \brief Perform a safe conditional swap of MPI which doesn't reveal whether
* the condition was true or not.
*
* \param[IN,OUT] X The address of the first MPI. This must be initialized.
* \param[IN,OUT] Y The address of the second MPI. This must be initialized.
* \param[IN] N The address of the modulus related to \p X and \p Y.
* \param[in,out] X The address of the first MPI. This must be initialized.
* \param[in,out] Y The address of the second MPI. This must be initialized.
* \param[in] N The address of the modulus related to \p X and \p Y.
* \param swap The condition deciding whether to perform
* the swap or not. Must be either 0 or 1:
* * \c 1: Swap the values of \p X and \p Y.