tls13:server:add server certificate writing
Signed-off-by: Jerry Yu <jerry.h.yu@arm.com>
This commit is contained in:
parent
83da34eb59
commit
1bff711a36
1 changed files with 6 additions and 1 deletions
|
@ -1449,7 +1449,12 @@ cleanup:
|
||||||
int ssl_tls13_write_server_certificate( mbedtls_ssl_context *ssl )
|
int ssl_tls13_write_server_certificate( mbedtls_ssl_context *ssl )
|
||||||
{
|
{
|
||||||
((void) ssl);
|
((void) ssl);
|
||||||
return( MBEDTLS_ERR_SSL_FEATURE_UNAVAILABLE );
|
int ret = mbedtls_ssl_tls13_write_certificate( ssl );
|
||||||
|
if(ret != 0)
|
||||||
|
return( ret );
|
||||||
|
|
||||||
|
mbedtls_ssl_handshake_set_state( ssl, MBEDTLS_SSL_CERTIFICATE_VERIFY );
|
||||||
|
return( 0 );
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
Loading…
Reference in a new issue