]> granicus.if.org Git - esp-idf/commitdiff
mbedtls: Re-apply: MBEDTLS_SHA512_ALT also replaces mbedtls_sha512_process()
authorAngus Gratton <angus@espressif.com>
Wed, 6 Sep 2017 05:31:52 +0000 (15:31 +1000)
committerAngus Gratton <gus@projectgus.com>
Thu, 7 Sep 2017 08:02:26 +0000 (18:02 +1000)
IDF-specific patch.

components/mbedtls/include/mbedtls/sha512.h

index 627694f425f5b6782efcfac7175abbfe7a7f8dfa..12f4fab4f16e7070616df87f2fdba4db20e23860 100644 (file)
@@ -101,6 +101,9 @@ void mbedtls_sha512_update( mbedtls_sha512_context *ctx, const unsigned char *in
  */
 void mbedtls_sha512_finish( mbedtls_sha512_context *ctx, unsigned char output[64] );
 
+/* Internal use */
+void mbedtls_sha512_process( mbedtls_sha512_context *ctx, const unsigned char data[128] );
+
 #ifdef __cplusplus
 }
 #endif
@@ -131,9 +134,6 @@ void mbedtls_sha512( const unsigned char *input, size_t ilen,
  */
 int mbedtls_sha512_self_test( int verbose );
 
-/* Internal use */
-void mbedtls_sha512_process( mbedtls_sha512_context *ctx, const unsigned char data[128] );
-
 #ifdef __cplusplus
 }
 #endif