Update ecdh.h

Changs based on review comments
This commit is contained in:
Rose Zadik 2018-04-16 16:04:57 +01:00 committed by GitHub
parent 6899328bf8
commit 7375b0f6c1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -45,7 +45,7 @@ extern "C" {
*/ */
typedef enum typedef enum
{ {
MBEDTLS_ECDH_OURS, /**< Our key. */ MBEDTLS_ECDH_OURS, /**< Our key. */
MBEDTLS_ECDH_THEIRS, /**< The key of the peer. */ MBEDTLS_ECDH_THEIRS, /**< The key of the peer. */
} mbedtls_ecdh_side; } mbedtls_ecdh_side;
@ -101,8 +101,8 @@ int mbedtls_ecdh_gen_public( mbedtls_ecp_group *grp, mbedtls_mpi *d, mbedtls_ecp
* \see ecp.h * \see ecp.h
* *
* \note If \p f_rng is not NULL, it is used to implement * \note If \p f_rng is not NULL, it is used to implement
* countermeasures against potential elaborate timing * countermeasures against side-channel attacks.
* attacks. For more information, see mbedtls_ecp_mul(). * For more information, see mbedtls_ecp_mul().
* *
* \param grp The ECP group. * \param grp The ECP group.
* \param z The destination MPI (shared secret). * \param z The destination MPI (shared secret).
@ -253,8 +253,8 @@ int mbedtls_ecdh_read_public( mbedtls_ecdh_context *ctx,
* and servers. * and servers.
* *
* \note If \p f_rng is not NULL, it is used to implement * \note If \p f_rng is not NULL, it is used to implement
* countermeasures against potential elaborate timing * countermeasures against side-channel attacks.
* attacks. For more information, see mbedtls_ecp_mul(). * For more information, see mbedtls_ecp_mul().
* *
* \see ecp.h * \see ecp.h
* *