summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--include/mbedtls/md2.h6
-rw-r--r--include/mbedtls/md4.h8
-rw-r--r--include/mbedtls/md5.h8
-rw-r--r--include/mbedtls/ripemd160.h8
-rw-r--r--include/mbedtls/sha1.h8
-rw-r--r--include/mbedtls/sha256.h8
-rw-r--r--include/mbedtls/sha512.h8
-rw-r--r--library/md2.c8
-rw-r--r--library/md4.c8
-rw-r--r--library/md5.c8
-rw-r--r--library/ripemd160.c8
-rw-r--r--library/sha1.c8
-rw-r--r--library/sha256.c6
-rw-r--r--library/sha512.c8
14 files changed, 54 insertions, 54 deletions
diff --git a/include/mbedtls/md2.h b/include/mbedtls/md2.h
index 1f3b1077..2c133a2a 100644
--- a/include/mbedtls/md2.h
+++ b/include/mbedtls/md2.h
@@ -119,7 +119,7 @@ int mbedtls_md2_finish_ext( mbedtls_md2_context *ctx,
*
* \return 0 if successful
*/
-int mbedtls_md2_process_ext( mbedtls_md2_context *ctx );
+int mbedtls_internal_md2_process( mbedtls_md2_context *ctx );
#if !defined(MBEDTLS_DEPRECATED_REMOVED)
#if defined(MBEDTLS_DEPRECATED_WARNING)
@@ -175,14 +175,14 @@ MBEDTLS_DEPRECATED static inline void mbedtls_md2_finish(
/**
* \brief MD2 process data block (internal use only)
*
- * \deprecated Superseded by mbedtls_md2_process_ext() in 2.5.0
+ * \deprecated Superseded by mbedtls_internal_md2_process() in 2.5.0
*
* \param ctx MD2 context
*/
MBEDTLS_DEPRECATED static inline void mbedtls_md2_process(
mbedtls_md2_context *ctx )
{
- mbedtls_md2_process_ext( ctx );
+ mbedtls_internal_md2_process( ctx );
}
#undef MBEDTLS_DEPRECATED
diff --git a/include/mbedtls/md4.h b/include/mbedtls/md4.h
index 7968b69a..671c6a4f 100644
--- a/include/mbedtls/md4.h
+++ b/include/mbedtls/md4.h
@@ -120,8 +120,8 @@ int mbedtls_md4_finish_ext( mbedtls_md4_context *ctx,
*
* \return 0 if successful
*/
-int mbedtls_md4_process_ext( mbedtls_md4_context *ctx,
- const unsigned char data[64] );
+int mbedtls_internal_md4_process( mbedtls_md4_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_md4_finish(
/**
* \brief MD4 process data block (internal use only)
*
- * \deprecated Superseded by mbedtls_md4_process_ext() in 2.5.0
+ * \deprecated Superseded by mbedtls_internal_md4_process() in 2.5.0
*
* \param ctx MD4 context
* \param data buffer holding one block of data
@@ -186,7 +186,7 @@ MBEDTLS_DEPRECATED static inline void mbedtls_md4_process(
mbedtls_md4_context *ctx,
const unsigned char data[64] )
{
- mbedtls_md4_process_ext( ctx, data );
+ mbedtls_internal_md4_process( ctx, data );
}
#undef MBEDTLS_DEPRECATED
diff --git a/include/mbedtls/md5.h b/include/mbedtls/md5.h
index 7ecf49f9..816d081a 100644
--- a/include/mbedtls/md5.h
+++ b/include/mbedtls/md5.h
@@ -115,8 +115,8 @@ int mbedtls_md5_finish_ext( mbedtls_md5_context *ctx,
*
* \return 0 if successful
*/
-int mbedtls_md5_process_ext( mbedtls_md5_context *ctx,
- const unsigned char data[64] );
+int mbedtls_internal_md5_process( mbedtls_md5_context *ctx,
+ const unsigned char data[64] );
#if !defined(MBEDTLS_DEPRECATED_REMOVED)
#if defined(MBEDTLS_DEPRECATED_WARNING)
@@ -172,7 +172,7 @@ MBEDTLS_DEPRECATED static inline void mbedtls_md5_finish(
/**
* \brief MD5 process data block (internal use only)
*
- * \deprecated Superseded by mbedtls_md5_process_ext() in 2.5.0
+ * \deprecated Superseded by mbedtls_internal_md5_process() in 2.5.0
*
* \param ctx MD5 context
* \param data buffer holding one block of data
@@ -181,7 +181,7 @@ MBEDTLS_DEPRECATED static inline void mbedtls_md5_process(
mbedtls_md5_context *ctx,
const unsigned char data[64] )
{
- mbedtls_md5_process_ext( ctx, data );
+ mbedtls_internal_md5_process( ctx, data );
}
#undef MBEDTLS_DEPRECATED
diff --git a/include/mbedtls/ripemd160.h b/include/mbedtls/ripemd160.h
index 5ef4700c..aea16b36 100644
--- a/include/mbedtls/ripemd160.h
+++ b/include/mbedtls/ripemd160.h
@@ -120,8 +120,8 @@ int mbedtls_ripemd160_finish_ext( mbedtls_ripemd160_context *ctx,
*
* \return 0 if successful
*/
-int mbedtls_ripemd160_process_ext( mbedtls_ripemd160_context *ctx,
- const unsigned char data[64] );
+int mbedtls_internal_ripemd160_process( mbedtls_ripemd160_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_ripemd160_finish(
/**
* \brief RIPEMD-160 process data block (internal use only)
*
- * \deprecated Superseded by mbedtls_ripemd160_process_ext() in 2.5.0
+ * \deprecated Superseded by mbedtls_internal_ripemd160_process() in 2.5.0
*
* \param ctx RIPEMD-160 context
* \param data buffer holding one block of data
@@ -186,7 +186,7 @@ MBEDTLS_DEPRECATED static inline void mbedtls_ripemd160_process(
mbedtls_ripemd160_context *ctx,
const unsigned char data[64] )
{
- mbedtls_ripemd160_process_ext( ctx, data );
+ mbedtls_internal_ripemd160_process( ctx, data );
}
#undef MBEDTLS_DEPRECATED
diff --git a/include/mbedtls/sha1.h b/include/mbedtls/sha1.h
index 9dde5b89..47a9f996 100644
--- a/include/mbedtls/sha1.h
+++ b/include/mbedtls/sha1.h
@@ -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
diff --git a/include/mbedtls/sha256.h b/include/mbedtls/sha256.h
index 3667e8c1..76555f4f 100644
--- a/include/mbedtls/sha256.h
+++ b/include/mbedtls/sha256.h
@@ -122,8 +122,8 @@ int mbedtls_sha256_finish_ext( mbedtls_sha256_context *ctx,
*
* \return 0 if successful
*/
-int mbedtls_sha256_process_ext( mbedtls_sha256_context *ctx,
- const unsigned char data[64] );
+int mbedtls_internal_sha256_process( mbedtls_sha256_context *ctx,
+ const unsigned char data[64] );
#if !defined(MBEDTLS_DEPRECATED_REMOVED)
#if defined(MBEDTLS_DEPRECATED_WARNING)
@@ -181,7 +181,7 @@ MBEDTLS_DEPRECATED static inline void mbedtls_sha256_finish(
/**
* \brief SHA-256 process data block (internal use only)
*
- * \deprecated Superseded by mbedtls_sha256_process_ext() in 2.5.0
+ * \deprecated Superseded by mbedtls_internal_sha256_process() in 2.5.0
*
* \param ctx SHA-256 context
* \param data buffer holding one block of data
@@ -190,7 +190,7 @@ MBEDTLS_DEPRECATED static inline void mbedtls_sha256_process(
mbedtls_sha256_context *ctx,
const unsigned char data[64] )
{
- mbedtls_sha256_process_ext( ctx, data );
+ mbedtls_internal_sha256_process( ctx, data );
}
#undef MBEDTLS_DEPRECATED
diff --git a/include/mbedtls/sha512.h b/include/mbedtls/sha512.h
index 3049110a..0fbdb3b7 100644
--- a/include/mbedtls/sha512.h
+++ b/include/mbedtls/sha512.h
@@ -122,8 +122,8 @@ int mbedtls_sha512_finish_ext( mbedtls_sha512_context *ctx,
*
* \return 0 if successful
*/
-int mbedtls_sha512_process_ext( mbedtls_sha512_context *ctx,
- const unsigned char data[128] );
+int mbedtls_internal_sha512_process( mbedtls_sha512_context *ctx,
+ const unsigned char data[128] );
#if !defined(MBEDTLS_DEPRECATED_REMOVED)
#if defined(MBEDTLS_DEPRECATED_WARNING)
@@ -181,7 +181,7 @@ MBEDTLS_DEPRECATED static inline void mbedtls_sha512_finish(
/**
* \brief SHA-512 process data block (internal use only)
*
- * \deprecated Superseded by mbedtls_sha512_process_ext() in 2.5.0
+ * \deprecated Superseded by mbedtls_internal_sha512_process() in 2.5.0
*
* \param ctx SHA-512 context
* \param data buffer holding one block of data
@@ -190,7 +190,7 @@ MBEDTLS_DEPRECATED static inline void mbedtls_sha512_process(
mbedtls_sha512_context *ctx,
const unsigned char data[128] )
{
- mbedtls_sha512_process_ext( ctx, data );
+ mbedtls_internal_sha512_process( ctx, data );
}
#undef MBEDTLS_DEPRECATED
diff --git a/library/md2.c b/library/md2.c
index 7dd2b6bc..a5d768b2 100644
--- a/library/md2.c
+++ b/library/md2.c
@@ -116,7 +116,7 @@ int mbedtls_md2_starts_ext( mbedtls_md2_context *ctx )
}
#if !defined(MBEDTLS_MD2_PROCESS_ALT)
-int mbedtls_md2_process_ext( mbedtls_md2_context *ctx )
+int mbedtls_internal_md2_process( mbedtls_md2_context *ctx )
{
int i, j;
unsigned char t = 0;
@@ -179,7 +179,7 @@ int mbedtls_md2_update_ext( mbedtls_md2_context *ctx,
if( ctx->left == 16 )
{
ctx->left = 0;
- if( ( ret = mbedtls_md2_process_ext( ctx ) ) != 0 )
+ if( ( ret = mbedtls_internal_md2_process( ctx ) ) != 0 )
return( ret );
}
}
@@ -202,11 +202,11 @@ int mbedtls_md2_finish_ext( mbedtls_md2_context *ctx,
for( i = ctx->left; i < 16; i++ )
ctx->buffer[i] = x;
- if( ( ret = mbedtls_md2_process_ext( ctx ) ) != 0 )
+ if( ( ret = mbedtls_internal_md2_process( ctx ) ) != 0 )
return( ret );
memcpy( ctx->buffer, ctx->cksum, 16 );
- if( ( ret = mbedtls_md2_process_ext( ctx ) ) != 0 )
+ if( ( ret = mbedtls_internal_md2_process( ctx ) ) != 0 )
return( ret );
memcpy( output, ctx->state, 16 );
diff --git a/library/md4.c b/library/md4.c
index 9239b634..da4df7b1 100644
--- a/library/md4.c
+++ b/library/md4.c
@@ -112,8 +112,8 @@ int mbedtls_md4_starts_ext( mbedtls_md4_context *ctx )
}
#if !defined(MBEDTLS_MD4_PROCESS_ALT)
-int mbedtls_md4_process_ext( mbedtls_md4_context *ctx,
- const unsigned char data[64] )
+int mbedtls_internal_md4_process( mbedtls_md4_context *ctx,
+ const unsigned char data[64] )
{
uint32_t X[16], A, B, C, D;
@@ -247,7 +247,7 @@ int mbedtls_md4_update_ext( mbedtls_md4_context *ctx,
memcpy( (void *) (ctx->buffer + left),
(void *) input, fill );
- if( ( ret = mbedtls_md4_process_ext( ctx, ctx->buffer ) ) != 0 )
+ if( ( ret = mbedtls_internal_md4_process( ctx, ctx->buffer ) ) != 0 )
return( ret );
input += fill;
@@ -257,7 +257,7 @@ int mbedtls_md4_update_ext( mbedtls_md4_context *ctx,
while( ilen >= 64 )
{
- if( ( ret = mbedtls_md4_process_ext( ctx, input ) ) != 0 )
+ if( ( ret = mbedtls_internal_md4_process( ctx, input ) ) != 0 )
return( ret );
input += 64;
diff --git a/library/md5.c b/library/md5.c
index dd046af8..8150f941 100644
--- a/library/md5.c
+++ b/library/md5.c
@@ -111,8 +111,8 @@ int mbedtls_md5_starts_ext( mbedtls_md5_context *ctx )
}
#if !defined(MBEDTLS_MD5_PROCESS_ALT)
-int mbedtls_md5_process_ext( mbedtls_md5_context *ctx,
- const unsigned char data[64] )
+int mbedtls_internal_md5_process( mbedtls_md5_context *ctx,
+ const unsigned char data[64] )
{
uint32_t X[16], A, B, C, D;
@@ -264,7 +264,7 @@ int mbedtls_md5_update_ext( mbedtls_md5_context *ctx,
if( left && ilen >= fill )
{
memcpy( (void *) (ctx->buffer + left), input, fill );
- if( ( ret = mbedtls_md5_process_ext( ctx, ctx->buffer ) ) != 0 )
+ if( ( ret = mbedtls_internal_md5_process( ctx, ctx->buffer ) ) != 0 )
return( ret );
input += fill;
@@ -274,7 +274,7 @@ int mbedtls_md5_update_ext( mbedtls_md5_context *ctx,
while( ilen >= 64 )
{
- if( ( ret = mbedtls_md5_process_ext( ctx, input ) ) != 0 )
+ if( ( ret = mbedtls_internal_md5_process( ctx, input ) ) != 0 )
return( ret );
input += 64;
diff --git a/library/ripemd160.c b/library/ripemd160.c
index f1d1f1e9..8bf988ea 100644
--- a/library/ripemd160.c
+++ b/library/ripemd160.c
@@ -114,8 +114,8 @@ int mbedtls_ripemd160_starts_ext( mbedtls_ripemd160_context *ctx )
/*
* Process one block
*/
-int mbedtls_ripemd160_process_ext( mbedtls_ripemd160_context *ctx,
- const unsigned char data[64] )
+int mbedtls_internal_ripemd160_process( mbedtls_ripemd160_context *ctx,
+ const unsigned char data[64] )
{
uint32_t A, B, C, D, E, Ap, Bp, Cp, Dp, Ep, X[16];
@@ -322,7 +322,7 @@ int mbedtls_ripemd160_update_ext( mbedtls_ripemd160_context *ctx,
{
memcpy( (void *) (ctx->buffer + left), input, fill );
- if( ( ret = mbedtls_ripemd160_process_ext( ctx, ctx->buffer ) ) != 0 )
+ if( ( ret = mbedtls_internal_ripemd160_process( ctx, ctx->buffer ) ) != 0 )
return( ret );
input += fill;
@@ -332,7 +332,7 @@ int mbedtls_ripemd160_update_ext( mbedtls_ripemd160_context *ctx,
while( ilen >= 64 )
{
- if( ( ret = mbedtls_ripemd160_process_ext( ctx, input ) ) != 0 )
+ if( ( ret = mbedtls_internal_ripemd160_process( ctx, input ) ) != 0 )
return( ret );
input += 64;
diff --git a/library/sha1.c b/library/sha1.c
index d2ec8bae..fdd08786 100644
--- a/library/sha1.c
+++ b/library/sha1.c
@@ -112,8 +112,8 @@ int mbedtls_sha1_starts_ext( mbedtls_sha1_context *ctx )
}
#if !defined(MBEDTLS_SHA1_PROCESS_ALT)
-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] )
{
uint32_t temp, W[16], A, B, C, D, E;
@@ -299,7 +299,7 @@ int mbedtls_sha1_update_ext( mbedtls_sha1_context *ctx,
{
memcpy( (void *) (ctx->buffer + left), input, fill );
- if( ( ret = mbedtls_sha1_process_ext( ctx, ctx->buffer ) ) != 0 )
+ if( ( ret = mbedtls_internal_sha1_process( ctx, ctx->buffer ) ) != 0 )
return( ret );
input += fill;
@@ -309,7 +309,7 @@ int mbedtls_sha1_update_ext( mbedtls_sha1_context *ctx,
while( ilen >= 64 )
{
- if( ( ret = mbedtls_sha1_process_ext( ctx, input ) ) != 0 )
+ if( ( ret = mbedtls_internal_sha1_process( ctx, input ) ) != 0 )
return( ret );
input += 64;
diff --git a/library/sha256.c b/library/sha256.c
index 337b8e64..88435a3c 100644
--- a/library/sha256.c
+++ b/library/sha256.c
@@ -181,7 +181,7 @@ static const uint32_t K[] =
d += temp1; h = temp1 + temp2; \
}
-int mbedtls_sha256_process_ext( mbedtls_sha256_context *ctx,
+int mbedtls_internal_sha256_process( mbedtls_sha256_context *ctx,
const unsigned char data[64] )
{
uint32_t temp1, temp2, W[64];
@@ -267,7 +267,7 @@ int mbedtls_sha256_update_ext( mbedtls_sha256_context *ctx,
{
memcpy( (void *) (ctx->buffer + left), input, fill );
- if( ( ret = mbedtls_sha256_process_ext( ctx, ctx->buffer ) ) != 0 )
+ if( ( ret = mbedtls_internal_sha256_process( ctx, ctx->buffer ) ) != 0 )
return( ret );
input += fill;
@@ -277,7 +277,7 @@ int mbedtls_sha256_update_ext( mbedtls_sha256_context *ctx,
while( ilen >= 64 )
{
- if( ( ret = mbedtls_sha256_process_ext( ctx, input ) ) != 0 )
+ if( ( ret = mbedtls_internal_sha256_process( ctx, input ) ) != 0 )
return( ret );
input += 64;
diff --git a/library/sha512.c b/library/sha512.c
index 74c7533b..ff7e5ca5 100644
--- a/library/sha512.c
+++ b/library/sha512.c
@@ -198,8 +198,8 @@ static const uint64_t K[80] =
UL64(0x5FCB6FAB3AD6FAEC), UL64(0x6C44198C4A475817)
};
-int mbedtls_sha512_process_ext( mbedtls_sha512_context *ctx,
- const unsigned char data[128] )
+int mbedtls_internal_sha512_process( mbedtls_sha512_context *ctx,
+ const unsigned char data[128] )
{
int i;
uint64_t temp1, temp2, W[80];
@@ -297,7 +297,7 @@ int mbedtls_sha512_update_ext( mbedtls_sha512_context *ctx,
{
memcpy( (void *) (ctx->buffer + left), input, fill );
- if( ( ret = mbedtls_sha512_process_ext( ctx, ctx->buffer ) ) != 0 )
+ if( ( ret = mbedtls_internal_sha512_process( ctx, ctx->buffer ) ) != 0 )
return( ret );
input += fill;
@@ -307,7 +307,7 @@ int mbedtls_sha512_update_ext( mbedtls_sha512_context *ctx,
while( ilen >= 128 )
{
- if( ( ret = mbedtls_sha512_process_ext( ctx, input ) ) != 0 )
+ if( ( ret = mbedtls_internal_sha512_process( ctx, input ) ) != 0 )
return( ret );
input += 128;