Commit 103b8ce8 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Do not export DigestMD5; it's an internal subprocedure

parent ad84f272
...@@ -45,6 +45,5 @@ struct md5_s ...@@ -45,6 +45,5 @@ struct md5_s
VLC_EXPORT(void, InitMD5, ( struct md5_s * ) ); VLC_EXPORT(void, InitMD5, ( struct md5_s * ) );
VLC_EXPORT(void, AddMD5, ( struct md5_s *, const uint8_t *, uint32_t ) ); VLC_EXPORT(void, AddMD5, ( struct md5_s *, const uint8_t *, uint32_t ) );
VLC_EXPORT(void, EndMD5, ( struct md5_s * ) ); VLC_EXPORT(void, EndMD5, ( struct md5_s * ) );
VLC_EXPORT(void, DigestMD5, ( struct md5_s *, uint32_t * ) );
#endif #endif
...@@ -97,7 +97,6 @@ DecodeLanguage ...@@ -97,7 +97,6 @@ DecodeLanguage
decode_URI decode_URI
decode_URI_duplicate decode_URI_duplicate
demux2_vaControlHelper demux2_vaControlHelper
DigestMD5
encode_URI_component encode_URI_component
EndMD5 EndMD5
EnsureUTF8 EnsureUTF8
......
...@@ -55,7 +55,7 @@ static inline void Reverse( uint32_t *p_buffer, int n ) ...@@ -55,7 +55,7 @@ static inline void Reverse( uint32_t *p_buffer, int n )
/***************************************************************************** /*****************************************************************************
* DigestMD5: update the MD5 digest with 64 bytes of data * DigestMD5: update the MD5 digest with 64 bytes of data
*****************************************************************************/ *****************************************************************************/
void DigestMD5( struct md5_s *p_md5, uint32_t *p_input ) static void DigestMD5( struct md5_s *p_md5, uint32_t *p_input )
{ {
uint32_t a, b, c, d; uint32_t a, b, c, d;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment