diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2019-11-12 09:49:38 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-11-12 09:49:38 +0100 |
commit | f6e62f1147fee45a24900360c61b768f7f395794 (patch) | |
tree | a1e6d05eb6e4d4abca54cdcca2dbd99d50fb9e9d /thirdparty/mbedtls/library/ecjpake.c | |
parent | 94bf2f648ee239a2f8d86aec23a6c1a35bef9332 (diff) | |
parent | a3d77be53b066e87199d1f91047fa40cb062f77f (diff) |
Merge pull request #33560 from akien-mga/mbedtls-2.16.3
mbedtls: Update to upstream version 2.16.3
Diffstat (limited to 'thirdparty/mbedtls/library/ecjpake.c')
-rw-r--r-- | thirdparty/mbedtls/library/ecjpake.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/thirdparty/mbedtls/library/ecjpake.c b/thirdparty/mbedtls/library/ecjpake.c index be941b14b1..1845c936ab 100644 --- a/thirdparty/mbedtls/library/ecjpake.c +++ b/thirdparty/mbedtls/library/ecjpake.c @@ -226,7 +226,7 @@ static int ecjpake_hash( const mbedtls_md_info_t *md_info, p += id_len; /* Compute hash */ - mbedtls_md( md_info, buf, p - buf, hash ); + MBEDTLS_MPI_CHK( mbedtls_md( md_info, buf, p - buf, hash ) ); /* Turn it into an integer mod n */ MBEDTLS_MPI_CHK( mbedtls_mpi_read_binary( h, hash, @@ -951,7 +951,7 @@ static const unsigned char ecjpake_test_pms[] = { 0xb4, 0x38, 0xf7, 0x19, 0xd3, 0xc4, 0xf3, 0x51 }; -/* Load my private keys and generate the correponding public keys */ +/* Load my private keys and generate the corresponding public keys */ static int ecjpake_test_load( mbedtls_ecjpake_context *ctx, const unsigned char *xm1, size_t len1, const unsigned char *xm2, size_t len2 ) |