mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2024-11-22 12:15:38 +01:00
Fix a fairly common typo in comments
This commit is contained in:
parent
f592e8eaf6
commit
588ad50c5a
@ -113,7 +113,7 @@ API Changes
|
|||||||
mbedtls_gcm_init() -> mbedtls_gcm_setkey()
|
mbedtls_gcm_init() -> mbedtls_gcm_setkey()
|
||||||
mbedtls_hmac_drbg_init() -> mbedtls_hmac_drbg_seed(_buf)()
|
mbedtls_hmac_drbg_init() -> mbedtls_hmac_drbg_seed(_buf)()
|
||||||
mbedtls_ctr_drbg_init() -> mbedtls_ctr_drbg_seed()
|
mbedtls_ctr_drbg_init() -> mbedtls_ctr_drbg_seed()
|
||||||
Note that for mbetls_ssl_setup(), you need to be done setting up the
|
Note that for mbedtls_ssl_setup(), you need to be done setting up the
|
||||||
ssl_config structure before calling it.
|
ssl_config structure before calling it.
|
||||||
* Most ssl_set_xxx() functions (all except ssl_set_bio(), ssl_set_hostname(),
|
* Most ssl_set_xxx() functions (all except ssl_set_bio(), ssl_set_hostname(),
|
||||||
ssl_set_session() and ssl_set_client_transport_id(), plus
|
ssl_set_session() and ssl_set_client_transport_id(), plus
|
||||||
|
@ -111,7 +111,7 @@ mbedtls_ctr_drbg_context;
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* \brief CTR_DRBG context initialization
|
* \brief CTR_DRBG context initialization
|
||||||
* Makes the context ready for mbetls_ctr_drbg_seed() or
|
* Makes the context ready for mbedtls_ctr_drbg_seed() or
|
||||||
* mbedtls_ctr_drbg_free().
|
* mbedtls_ctr_drbg_free().
|
||||||
*
|
*
|
||||||
* \param ctx CTR_DRBG context to be initialized
|
* \param ctx CTR_DRBG context to be initialized
|
||||||
|
@ -98,7 +98,7 @@ typedef struct
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* \brief HMAC_DRBG context initialization
|
* \brief HMAC_DRBG context initialization
|
||||||
* Makes the context ready for mbetls_hmac_drbg_seed(),
|
* Makes the context ready for mbedtls_hmac_drbg_seed(),
|
||||||
* mbedtls_hmac_drbg_seed_buf() or
|
* mbedtls_hmac_drbg_seed_buf() or
|
||||||
* mbedtls_hmac_drbg_free().
|
* mbedtls_hmac_drbg_free().
|
||||||
*
|
*
|
||||||
|
@ -54,7 +54,7 @@ typedef struct {
|
|||||||
} mbedtls_pkcs11_context;
|
} mbedtls_pkcs11_context;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Initialize a mbetls_pkcs11_context.
|
* Initialize a mbedtls_pkcs11_context.
|
||||||
* (Just making memory references valid.)
|
* (Just making memory references valid.)
|
||||||
*/
|
*/
|
||||||
void mbedtls_pkcs11_init( mbedtls_pkcs11_context *ctx );
|
void mbedtls_pkcs11_init( mbedtls_pkcs11_context *ctx );
|
||||||
|
@ -840,7 +840,7 @@ int mbedtls_ssl_get_ciphersuite_id( const char *ciphersuite_name );
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* \brief Initialize an SSL context
|
* \brief Initialize an SSL context
|
||||||
* Just makes the context ready for mbetls_ssl_setup() or
|
* Just makes the context ready for mbedtls_ssl_setup() or
|
||||||
* mbedtls_ssl_free()
|
* mbedtls_ssl_free()
|
||||||
*
|
*
|
||||||
* \param ssl SSL context
|
* \param ssl SSL context
|
||||||
|
@ -92,7 +92,7 @@ void mbedtls_set_alarm( int seconds );
|
|||||||
* (See \c mbedtls_timing_get_delay().)
|
* (See \c mbedtls_timing_get_delay().)
|
||||||
*
|
*
|
||||||
* \param data Pointer to timing data
|
* \param data Pointer to timing data
|
||||||
* Must point to a valid \c mbetls_timing_delay_context struct.
|
* Must point to a valid \c mbedtls_timing_delay_context struct.
|
||||||
* \param int_ms First (intermediate) delay in milliseconds.
|
* \param int_ms First (intermediate) delay in milliseconds.
|
||||||
* \param fin_ms Second (final) delay in milliseconds.
|
* \param fin_ms Second (final) delay in milliseconds.
|
||||||
* Pass 0 to cancel the current delay.
|
* Pass 0 to cancel the current delay.
|
||||||
@ -104,7 +104,7 @@ void mbedtls_timing_set_delay( void *data, uint32_t int_ms, uint32_t fin_ms );
|
|||||||
* (Memory helper: number of delays passed.)
|
* (Memory helper: number of delays passed.)
|
||||||
*
|
*
|
||||||
* \param data Pointer to timing data
|
* \param data Pointer to timing data
|
||||||
* Must point to a valid \c mbetls_timing_delay_context struct.
|
* Must point to a valid \c mbedtls_timing_delay_context struct.
|
||||||
*
|
*
|
||||||
* \return -1 if cancelled (fin_ms = 0)
|
* \return -1 if cancelled (fin_ms = 0)
|
||||||
* 0 if none of the delays are passed,
|
* 0 if none of the delays are passed,
|
||||||
|
@ -6993,7 +6993,7 @@ static mbedtls_ecp_group_id ssl_preset_suiteb_curves[] = {
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Load default in mbetls_ssl_config
|
* Load default in mbedtls_ssl_config
|
||||||
*/
|
*/
|
||||||
int mbedtls_ssl_config_defaults( mbedtls_ssl_config *conf,
|
int mbedtls_ssl_config_defaults( mbedtls_ssl_config *conf,
|
||||||
int endpoint, int transport, int preset )
|
int endpoint, int transport, int preset )
|
||||||
|
Loading…
Reference in New Issue
Block a user