Changeset ac3353b0e7707101ae72e4ca1272a3d19e38f75f

Show
Ignore:
Timestamp:
02/06/05 14:30:30 (4 years ago)
Author:
Rémi Denis-Courmont <rem@videolan.org>
git-committer:
Rémi Denis-Courmont <rem@videolan.org> 1117715430 +0000
git-parent:

[6787a19ad2257f54e93220bf06ec590e45ce68c6]

git-author:
Rémi Denis-Courmont <rem@videolan.org> 1117715430 +0000
Message:

Digest => DigestMD5

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • include/vlc_md5.h

    r30efcc2 rac3353b  
    4242VLC_EXPORT(void, AddMD5, ( struct md5_s *, const uint8_t *, uint32_t ) ); 
    4343VLC_EXPORT(void, EndMD5, ( struct md5_s * ) ); 
    44 VLC_EXPORT(void, Digest, ( struct md5_s *, uint32_t * ) ); 
     44VLC_EXPORT(void, DigestMD5, ( struct md5_s *, uint32_t * ) ); 
    4545 
    4646#endif 
  • modules/demux/mp4/drms.c

    r1acf84b rac3353b  
    9090}; 
    9191 
    92 #ifndef __VLC__ 
     92#ifdef __VLC__ 
     93# define Digest DigestMD5 
     94#else 
    9395/***************************************************************************** 
    9496 * md5_s: MD5 message structure 
  • src/misc/md5.c

    r30efcc2 rac3353b  
    5454 
    5555/***************************************************************************** 
    56  * Digest: update the MD5 digest with 64 bytes of data 
    57  *****************************************************************************/ 
    58 void Digest( struct md5_s *p_md5, uint32_t *p_input ) 
     56 * DigestMD5: update the MD5 digest with 64 bytes of data 
     57 *****************************************************************************/ 
     58void DigestMD5( struct md5_s *p_md5, uint32_t *p_input ) 
    5959{ 
    6060    uint32_t a, b, c, d;