Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
VLC
Manage
Activity
Members
Labels
Plan
Issues
4k
Issue boards
Milestones
Code
Merge requests
465
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Analyze
Contributor analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
VideoLAN
VLC
Commits
345d466c
Commit
345d466c
authored
17 years ago
by
damienf
Browse files
Options
Downloads
Patches
Plain Diff
misc/rand.c: cleanup and fix a stupid bug
parent
99e59bbe
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/misc/rand.c
+18
-16
18 additions, 16 deletions
src/misc/rand.c
with
18 additions
and
16 deletions
src/misc/rand.c
+
18
−
16
View file @
345d466c
...
...
@@ -123,34 +123,36 @@ void vlc_rand_bytes (void *buf, size_t len)
{
HCRYPTPROV
hProv
;
size_t
count
=
len
;
uint8_t
*
p_buf
=
(
uint8_t
*
)
buf
;
/* fill buffer with pseudo-random data */
while
(
count
>
0
)
{
unsigned
int
val
;
val
=
rand
();
if
(
count
<
sizeof
(
val
))
{
memcpy
(
buf
,
&
val
,
count
);
break
;
}
memcpy
(
buf
,
&
val
,
sizeof
(
val
));
count
-=
sizeof
(
val
);
val
=
rand
();
if
(
count
<
sizeof
(
val
))
{
memcpy
(
p_buf
,
&
val
,
count
);
break
;
}
memcpy
(
p_buf
,
&
val
,
sizeof
(
val
));
count
-=
sizeof
(
val
);
p_buf
+=
sizeof
(
val
);
}
/* acquire default encryption context */
if
(
CryptAcquireContext
(
&
hProv
,
// Variable to hold returned handle.
NULL
,
// Use default key container.
MS_DEF_PROV
,
// Use default CSP.
PROV_RSA_FULL
,
// Type of provider to acquire.
0
)
)
&
hProv
,
// Variable to hold returned handle.
NULL
,
// Use default key container.
MS_DEF_PROV
,
// Use default CSP.
PROV_RSA_FULL
,
// Type of provider to acquire.
0
)
)
{
/* fill buffer with pseudo-random data, intial buffer content
is used as auxillary random seed */
is used as auxillary random seed */
CryptGenRandom
(
hProv
,
len
,
buf
);
CryptReleaseContext
(
hProv
,
0
);
CryptReleaseContext
(
hProv
,
0
);
}
}
#endif
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment