mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2024-11-25 19:35:39 +01:00
Fix some old names that remained
- most in doxygen doc that was never renamed - some re-introduced in comments/doc/strings by me
This commit is contained in:
parent
8473f87984
commit
151dc77732
@ -71,7 +71,7 @@
|
|||||||
|
|
||||||
/*
|
/*
|
||||||
* You should adjust this to the exact number of sources you're using: default
|
* You should adjust this to the exact number of sources you're using: default
|
||||||
* is the "platform_entropy_poll" source, but you may want to add other ones.
|
* is the "mbedtls_platform_entropy_poll" source, but you may want to add other ones.
|
||||||
* Minimum is 2 for the entropy test suite.
|
* Minimum is 2 for the entropy test suite.
|
||||||
*/
|
*/
|
||||||
#define MBEDTLS_ENTROPY_MAX_SOURCES 2
|
#define MBEDTLS_ENTROPY_MAX_SOURCES 2
|
||||||
|
@ -18,31 +18,31 @@
|
|||||||
* specific algorithms.
|
* specific algorithms.
|
||||||
*
|
*
|
||||||
* All symmetric encryption algorithms are accessible via the generic cipher layer
|
* All symmetric encryption algorithms are accessible via the generic cipher layer
|
||||||
* (see \c cipher_init_ctx()).
|
* (see \c mbedtls_cipher_setup()).
|
||||||
*
|
*
|
||||||
* The asymmetric encryptrion algorithms are accessible via the generic public
|
* The asymmetric encryptrion algorithms are accessible via the generic public
|
||||||
* key layer (see \c pk_init()).
|
* key layer (see \c mbedtls_pk_init()).
|
||||||
*
|
*
|
||||||
* The following algorithms are provided:
|
* The following algorithms are provided:
|
||||||
* - Symmetric:
|
* - Symmetric:
|
||||||
* - AES (see \c aes_crypt_ecb(), \c aes_crypt_cbc(), \c aes_crypt_cfb128() and
|
* - AES (see \c mbedtls_aes_crypt_ecb(), \c mbedtls_aes_crypt_cbc(), \c mbedtls_aes_crypt_cfb128() and
|
||||||
* \c aes_crypt_ctr()).
|
* \c mbedtls_aes_crypt_ctr()).
|
||||||
* - ARCFOUR (see \c arc4_crypt()).
|
* - ARCFOUR (see \c mbedtls_arc4_crypt()).
|
||||||
* - Blowfish / BF (see \c blowfish_crypt_ecb(), \c blowfish_crypt_cbc(),
|
* - Blowfish / BF (see \c mbedtls_blowfish_crypt_ecb(), \c mbedtls_blowfish_crypt_cbc(),
|
||||||
* \c blowfish_crypt_cfb64() and \c blowfish_crypt_ctr())
|
* \c mbedtls_blowfish_crypt_cfb64() and \c mbedtls_blowfish_crypt_ctr())
|
||||||
* - Camellia (see \c camellia_crypt_ecb(), \c camellia_crypt_cbc(),
|
* - Camellia (see \c mbedtls_camellia_crypt_ecb(), \c mbedtls_camellia_crypt_cbc(),
|
||||||
* \c camellia_crypt_cfb128() and \c camellia_crypt_ctr()).
|
* \c mbedtls_camellia_crypt_cfb128() and \c mbedtls_camellia_crypt_ctr()).
|
||||||
* - DES/3DES (see \c des_crypt_ecb(), \c des_crypt_cbc(), \c des3_crypt_ecb()
|
* - DES/3DES (see \c mbedtls_des_crypt_ecb(), \c mbedtls_des_crypt_cbc(), \c mbedtls_des3_crypt_ecb()
|
||||||
* and \c des3_crypt_cbc()).
|
* and \c mbedtls_des3_crypt_cbc()).
|
||||||
* - GCM (AES-GCM and CAMELLIA-GCM) (see \c gcm_init())
|
* - GCM (AES-GCM and CAMELLIA-GCM) (see \c mbedtls_gcm_init())
|
||||||
* - XTEA (see \c xtea_crypt_ecb()).
|
* - XTEA (see \c mbedtls_xtea_crypt_ecb()).
|
||||||
* - Asymmetric:
|
* - Asymmetric:
|
||||||
* - Diffie-Hellman-Merkle (see \c dhm_read_public(), \c dhm_make_public()
|
* - Diffie-Hellman-Merkle (see \c mbedtls_dhm_read_public(), \c mbedtls_dhm_make_public()
|
||||||
* and \c dhm_calc_secret()).
|
* and \c mbedtls_dhm_calc_secret()).
|
||||||
* - RSA (see \c rsa_public() and \c rsa_private()).
|
* - RSA (see \c mbedtls_rsa_public() and \c mbedtls_rsa_private()).
|
||||||
* - Elliptic Curves over GF(p) (see \c ecp_point_init()).
|
* - Elliptic Curves over GF(p) (see \c mbedtls_ecp_point_init()).
|
||||||
* - Elliptic Curve Digital Signature Algorithm (ECDSA) (see \c ecdsa_init()).
|
* - Elliptic Curve Digital Signature Algorithm (ECDSA) (see \c mbedtls_ecdsa_init()).
|
||||||
* - Elliptic Curve Diffie Hellman (ECDH) (see \c ecdh_init()).
|
* - Elliptic Curve Diffie Hellman (ECDH) (see \c mbedtls_ecdh_init()).
|
||||||
*
|
*
|
||||||
* This module provides encryption/decryption which can be used to provide
|
* This module provides encryption/decryption which can be used to provide
|
||||||
* secrecy.
|
* secrecy.
|
||||||
|
@ -11,7 +11,7 @@
|
|||||||
*
|
*
|
||||||
* The block-cipher counter-mode based deterministic random
|
* The block-cipher counter-mode based deterministic random
|
||||||
* bit generator (CTR_DBRG) as specified in NIST SP800-90. It needs an external
|
* bit generator (CTR_DBRG) as specified in NIST SP800-90. It needs an external
|
||||||
* source of entropy. For these purposes \c entropy_func() can be used. This is
|
* source of entropy. For these purposes \c mbedtls_entropy_func() can be used. This is
|
||||||
* an implementation based on a simple entropy accumulator design.
|
* an implementation based on a simple entropy accumulator design.
|
||||||
*
|
*
|
||||||
* The other number generator that is included is less strong and uses the HAVEGE
|
* The other number generator that is included is less strong and uses the HAVEGE
|
||||||
|
@ -10,10 +10,10 @@
|
|||||||
* communication channel.
|
* communication channel.
|
||||||
*
|
*
|
||||||
* The basic provisions are:
|
* The basic provisions are:
|
||||||
* - initialise an SSL/TLS context (see \c ssl_init()).
|
* - initialise an SSL/TLS context (see \c mbedtls_ssl_init()).
|
||||||
* - perform an SSL/TLS handshake (see \c ssl_handshake()).
|
* - perform an SSL/TLS handshake (see \c mbedtls_ssl_handshake()).
|
||||||
* - read/write (see \c ssl_read() and \c ssl_write()).
|
* - read/write (see \c mbedtls_ssl_read() and \c mbedtls_ssl_write()).
|
||||||
* - notify a peer that connection is being closed (see \c ssl_close_notify()).
|
* - notify a peer that connection is being closed (see \c mbedtls_ssl_close_notify()).
|
||||||
*
|
*
|
||||||
* Many aspects of such a channel are set through parameters and callback
|
* Many aspects of such a channel are set through parameters and callback
|
||||||
* functions:
|
* functions:
|
||||||
|
@ -13,10 +13,10 @@
|
|||||||
* (or Host-to-host) layer.
|
* (or Host-to-host) layer.
|
||||||
* SSL/TLS resides on top of that, in the Application layer, and makes use of
|
* SSL/TLS resides on top of that, in the Application layer, and makes use of
|
||||||
* its basic provisions:
|
* its basic provisions:
|
||||||
* - listening on a port (see \c net_bind()).
|
* - listening on a port (see \c mbedtls_net_bind()).
|
||||||
* - accepting a connection (through \c net_accept()).
|
* - accepting a connection (through \c mbedtls_net_accept()).
|
||||||
* - read/write (through \c net_recv()/\c net_send()).
|
* - read/write (through \c mbedtls_net_recv()/\c mbedtls_net_send()).
|
||||||
* - close a connection (through \c net_close()).
|
* - close a connection (through \c mbedtls_net_close()).
|
||||||
*
|
*
|
||||||
* This way you have the means to, for example, implement and use an UDP or
|
* This way you have the means to, for example, implement and use an UDP or
|
||||||
* IPSec communication solution as a basis.
|
* IPSec communication solution as a basis.
|
||||||
|
@ -15,7 +15,7 @@
|
|||||||
* \c x509parse_keyfile()).
|
* \c x509parse_keyfile()).
|
||||||
* - X.509 certificate signature verification (see \c x509parse_verify())
|
* - X.509 certificate signature verification (see \c x509parse_verify())
|
||||||
* - X.509 certificate writing and certificate request writing (see
|
* - X.509 certificate writing and certificate request writing (see
|
||||||
* \c x509write_crt_der() and \c x509write_csr_der()).
|
* \c mbedtls_x509write_crt_der() and \c mbedtls_x509write_csr_der()).
|
||||||
*
|
*
|
||||||
* This module can be used to build a certificate authority (CA) chain and
|
* This module can be used to build a certificate authority (CA) chain and
|
||||||
* verify its signature. It is also used to generate Certificate Signing
|
* verify its signature. It is also used to generate Certificate Signing
|
||||||
|
@ -516,7 +516,7 @@ int mbedtls_ecp_mul( mbedtls_ecp_group *grp, mbedtls_ecp_point *R,
|
|||||||
* R = m * P + n * Q
|
* R = m * P + n * Q
|
||||||
* (Not thread-safe to use same group in multiple threads)
|
* (Not thread-safe to use same group in multiple threads)
|
||||||
*
|
*
|
||||||
* \note In contrast to ecp_mul(), this function does not guarantee
|
* \note In contrast to mbedtls_ecp_mul(), this function does not guarantee
|
||||||
* a constant execution flow and timing.
|
* a constant execution flow and timing.
|
||||||
*
|
*
|
||||||
* \param grp ECP group
|
* \param grp ECP group
|
||||||
|
@ -1154,7 +1154,7 @@ void mbedtls_ssl_init( mbedtls_ssl_context *ssl );
|
|||||||
* \brief Set up an SSL context for use
|
* \brief Set up an SSL context for use
|
||||||
*
|
*
|
||||||
* \note No copy of the configuration context is made, it can be
|
* \note No copy of the configuration context is made, it can be
|
||||||
* shared by many ssl_context structures.
|
* shared by many mbedtls_ssl_context structures.
|
||||||
*
|
*
|
||||||
* \warning Modifying the conf structure after is has been used in this
|
* \warning Modifying the conf structure after is has been used in this
|
||||||
* function is unsupported!
|
* function is unsupported!
|
||||||
|
@ -6402,7 +6402,7 @@ int mbedtls_ssl_write( mbedtls_ssl_context *ssl, const unsigned char *buf, size_
|
|||||||
{
|
{
|
||||||
if( ( ret = mbedtls_ssl_handshake( ssl ) ) != 0 )
|
if( ( ret = mbedtls_ssl_handshake( ssl ) ) != 0 )
|
||||||
{
|
{
|
||||||
MBEDTLS_SSL_DEBUG_RET( 1, "ssl_handshake", ret );
|
MBEDTLS_SSL_DEBUG_RET( 1, "mbedtls_ssl_handshake", ret );
|
||||||
return( ret );
|
return( ret );
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -281,7 +281,7 @@ reset:
|
|||||||
sizeof( client_ip ) ) ) != 0 )
|
sizeof( client_ip ) ) ) != 0 )
|
||||||
{
|
{
|
||||||
printf( " failed\n ! "
|
printf( " failed\n ! "
|
||||||
"ssl_set_client_transport_id() returned -0x%x\n\n", -ret );
|
"mbedtls_ssl_set_client_transport_id() returned -0x%x\n\n", -ret );
|
||||||
goto exit;
|
goto exit;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1826,7 +1826,7 @@ reset:
|
|||||||
sizeof( client_ip ) ) ) != 0 )
|
sizeof( client_ip ) ) ) != 0 )
|
||||||
{
|
{
|
||||||
mbedtls_printf( " failed\n ! "
|
mbedtls_printf( " failed\n ! "
|
||||||
"ssl_set_client_transport_id() returned -0x%x\n\n", -ret );
|
"mbedtls_ssl_set_client_transport_id() returned -0x%x\n\n", -ret );
|
||||||
goto exit;
|
goto exit;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user