Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-1.1
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-1.1
Commits
103b8ce8
Commit
103b8ce8
authored
Sep 01, 2007
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Do not export DigestMD5; it's an internal subprocedure
parent
ad84f272
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
1 addition
and
3 deletions
+1
-3
include/vlc_md5.h
include/vlc_md5.h
+0
-1
src/libvlc.sym
src/libvlc.sym
+0
-1
src/misc/md5.c
src/misc/md5.c
+1
-1
No files found.
include/vlc_md5.h
View file @
103b8ce8
...
@@ -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
src/libvlc.sym
View file @
103b8ce8
...
@@ -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
...
...
src/misc/md5.c
View file @
103b8ce8
...
@@ -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
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment