Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Wim Lewis
nettle
Commits
047fc937
Commit
047fc937
authored
Oct 10, 2001
by
Niels Möller
Browse files
(main): Better output of entropy
estimates at the end. Rev: src/nettle/testsuite/yarrow-test.c:1.2
parent
80c96b68
Changes
1
Hide whitespace changes
Inline
Side-by-side
testsuite/yarrow-test.c
View file @
047fc937
...
...
@@ -180,10 +180,13 @@ main(int argc, char **argv)
fprintf
(
stderr
,
"
\n\n
seeded: %s
\n
"
,
yarrow
.
seeded
?
"yes"
:
"no"
);
fprintf
(
stderr
,
"source 0 entropy: %d
\n
"
,
sources
[
0
].
estimate
[
YARROW_SLOW
]);
fprintf
(
stderr
,
"source 1 entropy: %d
\n
"
,
sources
[
1
].
estimate
[
YARROW_SLOW
]);
fprintf
(
stderr
,
"source 0, (fast, slow) entropy: (%d, %d)
\n
"
,
sources
[
0
].
estimate
[
YARROW_FAST
],
sources
[
0
].
estimate
[
YARROW_SLOW
]);
fprintf
(
stderr
,
"source 1, (fast, slow) entropy: (%d, %d)
\n
"
,
sources
[
1
].
estimate
[
YARROW_FAST
],
sources
[
1
].
estimate
[
YARROW_SLOW
]);
return
EXIT_SUCCESS
;
}
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment