Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
L
libvncserver
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
rasky
libvncserver
Commits
b1561e14
Commit
b1561e14
authored
Sep 20, 2011
by
Christian Beier
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'websockets' of
https://github.com/kanaka/libvncserver
into websockets
parents
419641f1
170033a9
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
rfbcrypto_included.c
libvncserver/rfbcrypto_included.c
+3
-3
No files found.
libvncserver/rfbcrypto_included.c
View file @
b1561e14
...
...
@@ -28,12 +28,12 @@
void
digestmd5
(
const
struct
iovec
*
iov
,
int
iovcnt
,
void
*
dest
)
{
md5_context
c
;
struct
md5_ctx
c
;
int
i
;
__md5_init_ctx
(
&
c
);
for
(
i
=
0
;
i
<
iovcnt
;
i
++
)
__md5_process_bytes
(
&
c
,
iov
[
i
].
iov_base
,
iov
[
i
].
iov_len
);
__md5_process_bytes
(
iov
[
i
].
iov_base
,
iov
[
i
].
iov_len
,
&
c
);
__md5_finish_ctx
(
&
c
,
dest
);
}
...
...
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