Fix trailing whitespace
This commit is contained in:
parent
cc91fe2667
commit
12f359f7da
1 changed files with 3 additions and 3 deletions
|
@ -1021,12 +1021,12 @@ int main( int argc, char *argv[] )
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
mbedtls_ecdh_init( &ecdh_srv );
|
mbedtls_ecdh_init( &ecdh_srv );
|
||||||
mbedtls_ecdh_init( &ecdh_cli );
|
mbedtls_ecdh_init( &ecdh_cli );
|
||||||
|
|
||||||
mbedtls_snprintf( title, sizeof( title ), "ECDHE-%s", curve_info->name );
|
mbedtls_snprintf( title, sizeof( title ), "ECDHE-%s", curve_info->name );
|
||||||
TIME_PUBLIC( title, "full handshake",
|
TIME_PUBLIC( title, "full handshake",
|
||||||
const unsigned char * p_srv = buf_srv;
|
const unsigned char * p_srv = buf_srv;
|
||||||
|
|
||||||
CHECK_AND_CONTINUE( mbedtls_ecdh_setup( &ecdh_srv, curve_info->grp_id ) );
|
CHECK_AND_CONTINUE( mbedtls_ecdh_setup( &ecdh_srv, curve_info->grp_id ) );
|
||||||
CHECK_AND_CONTINUE( mbedtls_ecdh_make_params( &ecdh_srv, &olen, buf_srv, sizeof( buf_srv ), myrand, NULL ) );
|
CHECK_AND_CONTINUE( mbedtls_ecdh_make_params( &ecdh_srv, &olen, buf_srv, sizeof( buf_srv ), myrand, NULL ) );
|
||||||
|
|
||||||
|
@ -1038,7 +1038,7 @@ int main( int argc, char *argv[] )
|
||||||
|
|
||||||
CHECK_AND_CONTINUE( mbedtls_ecdh_calc_secret( &ecdh_cli, &olen, buf_cli, sizeof( buf_cli ), myrand, NULL ) );
|
CHECK_AND_CONTINUE( mbedtls_ecdh_calc_secret( &ecdh_cli, &olen, buf_cli, sizeof( buf_cli ), myrand, NULL ) );
|
||||||
mbedtls_ecdh_free( &ecdh_cli );
|
mbedtls_ecdh_free( &ecdh_cli );
|
||||||
|
|
||||||
mbedtls_ecdh_free( &ecdh_srv );
|
mbedtls_ecdh_free( &ecdh_srv );
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue