Changeset ac3353b0e7707101ae72e4ca1272a3d19e38f75f
- 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
| r30efcc2 |
rac3353b |
|
| 42 | 42 | VLC_EXPORT(void, AddMD5, ( struct md5_s *, const uint8_t *, uint32_t ) ); |
|---|
| 43 | 43 | VLC_EXPORT(void, EndMD5, ( struct md5_s * ) ); |
|---|
| 44 | | VLC_EXPORT(void, Digest, ( struct md5_s *, uint32_t * ) ); |
|---|
| | 44 | VLC_EXPORT(void, DigestMD5, ( struct md5_s *, uint32_t * ) ); |
|---|
| 45 | 45 | |
|---|
| 46 | 46 | #endif |
|---|
| r1acf84b |
rac3353b |
|
| 90 | 90 | }; |
|---|
| 91 | 91 | |
|---|
| 92 | | #ifndef __VLC__ |
|---|
| | 92 | #ifdef __VLC__ |
|---|
| | 93 | # define Digest DigestMD5 |
|---|
| | 94 | #else |
|---|
| 93 | 95 | /***************************************************************************** |
|---|
| 94 | 96 | * md5_s: MD5 message structure |
|---|
| r30efcc2 |
rac3353b |
|
| 54 | 54 | |
|---|
| 55 | 55 | /***************************************************************************** |
|---|
| 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 | *****************************************************************************/ |
|---|
| | 58 | void DigestMD5( struct md5_s *p_md5, uint32_t *p_input ) |
|---|
| 59 | 59 | { |
|---|
| 60 | 60 | uint32_t a, b, c, d; |
|---|