Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
M
mongoose
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
esp
mongoose
Commits
19a28b3c
Commit
19a28b3c
authored
8 years ago
by
Sergey Lyubka
Committed by
Marko Mikulicic
8 years ago
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update cs_md5 description according to reality
PUBLISHED_FROM=b9c776bac4c8f2456c71b33641601fb38b30347e
parent
69944c1d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
mongoose.h
mongoose.h
+3
-2
No files found.
mongoose.h
View file @
19a28b3c
...
@@ -966,11 +966,12 @@ void MD5_Update(MD5_CTX *c, const unsigned char *data, size_t len);
...
@@ -966,11 +966,12 @@ void MD5_Update(MD5_CTX *c, const unsigned char *data, size_t len);
void
MD5_Final
(
unsigned
char
*
md
,
MD5_CTX
*
c
);
void
MD5_Final
(
unsigned
char
*
md
,
MD5_CTX
*
c
);
/*
/*
* Return stringified MD5 hash for NULL terminated list of strings.
* Return stringified MD5 hash for NULL terminated list of pointer/length pairs.
* A length should be specified as size_t variable.
* Example:
* Example:
*
*
* char buf[33];
* char buf[33];
* cs_md5(buf, "foo",
"bar"
, NULL);
* cs_md5(buf, "foo",
(size_t) 3, "bar", (size_t) 3
, NULL);
*/
*/
char
*
cs_md5
(
char
buf
[
33
],
...);
char
*
cs_md5
(
char
buf
[
33
],
...);
...
...
This diff is collapsed.
Click to expand it.
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