mbedtls: Re-apply: MBEDTLS_SHA512_ALT also replaces mbedtls_sha512_process()
IDF-specific patch.
This commit is contained in:
parent
3142997830
commit
3a08ec7b3d
1 changed files with 3 additions and 3 deletions
|
@ -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] );
|
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
|
#ifdef __cplusplus
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
@ -131,9 +134,6 @@ void mbedtls_sha512( const unsigned char *input, size_t ilen,
|
||||||
*/
|
*/
|
||||||
int mbedtls_sha512_self_test( int verbose );
|
int mbedtls_sha512_self_test( int verbose );
|
||||||
|
|
||||||
/* Internal use */
|
|
||||||
void mbedtls_sha512_process( mbedtls_sha512_context *ctx, const unsigned char data[128] );
|
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in a new issue