Rename md process functions with _internal_

This commit is contained in:
Andres Amaya Garcia 2017-06-28 10:36:39 +01:00
parent 614c689e05
commit cccfe08530
14 changed files with 54 additions and 54 deletions

View file

@ -120,8 +120,8 @@ int mbedtls_sha1_finish_ext( mbedtls_sha1_context *ctx,
*
* \return 0 if successful
*/
int mbedtls_sha1_process_ext( mbedtls_sha1_context *ctx,
const unsigned char data[64] );
int mbedtls_internal_sha1_process( mbedtls_sha1_context *ctx,
const unsigned char data[64] );
#if !defined(MBEDTLS_DEPRECATED_REMOVED)
#if defined(MBEDTLS_DEPRECATED_WARNING)
@ -177,7 +177,7 @@ MBEDTLS_DEPRECATED static inline void mbedtls_sha1_finish(
/**
* \brief SHA-1 process data block (internal use only)
*
* \deprecated Superseded by mbedtls_sha1_process_ext() in 2.5.0
* \deprecated Superseded by mbedtls_internal_sha1_process() in 2.5.0
*
* \param ctx SHA-1 context
* \param data buffer holding one block of data
@ -186,7 +186,7 @@ MBEDTLS_DEPRECATED static inline void mbedtls_sha1_process(
mbedtls_sha1_context *ctx,
const unsigned char data[64] )
{
mbedtls_sha1_process_ext( ctx, data );
mbedtls_internal_sha1_process( ctx, data );
}
#undef MBEDTLS_DEPRECATED