1
0
mirror of https://github.com/Mbed-TLS/mbedtls.git synced 2025-07-28 00:21:48 +03:00

Rename write signature algorithms function

To keep similar name with other place.

Signed-off-by: Jerry Yu <jerry.h.yu@arm.com>
This commit is contained in:
Jerry Yu
2021-08-31 10:57:07 +08:00
parent eecfbf001c
commit e41dec0158
3 changed files with 10 additions and 12 deletions

View File

@ -311,8 +311,7 @@ static int ssl_tls13_write_exts_client_hello( mbedtls_ssl_context *ssl,
/* The supported_signature_algorithms extension is REQUIRED for
* certificate authenticated ciphersuites. */
ret = mbedtls_ssl_tls13_write_signature_algorithms_ext( ssl, buf,
end, &cur_ext_len );
ret = mbedtls_ssl_tls13_write_sig_alg_ext( ssl, buf, end, &cur_ext_len );
if( ret != 0 )
return( ret );