Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
O
OpenLDAP
Manage
Activity
Members
Labels
Plan
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Christopher Ng
OpenLDAP
Commits
13147068
Commit
13147068
authored
22 years ago
by
Kurt Zeilenga
Browse files
Options
Downloads
Patches
Plain Diff
/dev/urandom re-read(2) loop
parent
43a4500b
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
libraries/liblutil/entropy.c
+12
-6
12 additions, 6 deletions
libraries/liblutil/entropy.c
with
12 additions
and
6 deletions
libraries/liblutil/entropy.c
+
12
−
6
View file @
13147068
...
...
@@ -36,21 +36,27 @@ int lutil_entropy( unsigned char *buf, ber_len_t nbytes )
if
(
nbytes
==
0
)
return
0
;
#ifdef URANDOM_DEVICE
#define URANDOM_NREADS 4
/* Linux and *BSD offer a urandom device */
{
int
rc
,
fd
;
int
rc
,
fd
,
n
=
0
;
fd
=
open
(
URANDOM_DEVICE
,
O_RDONLY
);
if
(
fd
<
0
)
return
-
1
;
rc
=
read
(
fd
,
buf
,
nbytes
);
close
(
fd
);
do
{
rc
=
read
(
fd
,
buf
,
nbytes
);
if
(
rc
<=
0
)
break
;
/* should return nbytes */
if
(
rc
!=
nbytes
)
return
-
1
;
buf
+=
rc
;
nbytes
-=
rc
;
return
0
;
if
(
++
n
>=
URANDOM_NREADS
)
break
;
}
while
(
nbytes
>
0
);
close
(
fd
);
return
nbytes
>
0
?
-
1
:
0
;
}
#elif PROV_RSA_FULL
{
...
...
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