Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
N
nettle
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
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
Brian Smith
nettle
Commits
25c055be
Commit
25c055be
authored
23 years ago
by
Niels Möller
Browse files
Options
Downloads
Patches
Plain Diff
New file.
Rev: src/nettle/testsuite/yarrow-test.c:1.1
parent
ad5d6dc3
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
testsuite/yarrow-test.c
+189
-0
189 additions, 0 deletions
testsuite/yarrow-test.c
with
189 additions
and
0 deletions
testsuite/yarrow-test.c
0 → 100644
+
189
−
0
View file @
25c055be
#include
"yarrow.h"
#include
"macros.h"
#include
<assert.h>
#include
<stdio.h>
#include
<stdlib.h>
/* Lagged fibonacci sequence as described in Knuth 3.6 */
#define KK 100
#define LL 37
#define MM (1UL << 30)
#define TT 70
uint32_t
ran_x
[
KK
];
unsigned
ran_index
;
static
void
ran_init
(
uint32_t
seed
)
{
uint32_t
t
,
j
;
uint32_t
x
[
2
*
KK
-
1
];
uint32_t
ss
=
(
seed
+
2
)
&
(
MM
-
2
);
for
(
j
=
0
;
j
<
KK
;
j
++
)
{
x
[
j
]
=
ss
;
ss
<<=
1
;
if
(
ss
>=
MM
)
ss
-=
(
MM
-
2
);
}
for
(;
j
<
2
*
KK
-
1
;
j
++
)
x
[
j
]
=
0
;
x
[
1
]
++
;
ss
=
seed
&
(
MM
-
1
);
for
(
t
=
TT
-
1
;
t
;
)
{
for
(
j
=
KK
-
1
;
j
>
0
;
j
--
)
x
[
j
+
j
]
=
x
[
j
];
for
(
j
=
2
*
KK
-
2
;
j
>
KK
-
LL
;
j
-=
2
)
x
[
2
*
KK
-
1
-
j
]
=
x
[
j
]
&
~
1
;
for
(
j
=
2
*
KK
-
2
;
j
>=
KK
;
j
--
)
if
(
x
[
j
]
&
1
)
{
x
[
j
-
(
KK
-
LL
)]
=
(
x
[
j
-
(
KK
-
LL
)]
-
x
[
j
])
&
(
MM
-
1
);
x
[
j
-
KK
]
=
(
x
[
j
-
KK
]
-
x
[
j
])
&
(
MM
-
1
);
}
if
(
ss
&
1
)
{
for
(
j
=
KK
;
j
>
0
;
j
--
)
x
[
j
]
=
x
[
j
-
1
];
x
[
0
]
=
x
[
KK
];
if
(
x
[
KK
]
&
1
)
x
[
LL
]
=
(
x
[
LL
]
-
x
[
KK
])
&
(
MM
-
1
);
}
if
(
ss
)
ss
>>=
1
;
else
t
--
;
}
for
(
j
=
0
;
j
<
LL
;
j
++
)
ran_x
[
j
+
KK
-
LL
]
=
x
[
j
];
for
(;
j
<
KK
;
j
++
)
ran_x
[
j
-
LL
]
=
x
[
j
];
ran_index
=
0
;
}
static
uint32_t
ran_get
(
void
)
{
uint32_t
value
;
assert
(
ran_index
<
KK
);
value
=
ran_x
[
ran_index
];
ran_x
[
ran_index
]
-=
ran_x
[(
ran_index
+
KK
-
LL
)
%
KK
];
ran_x
[
ran_index
]
&=
(
MM
-
1
);
ran_index
=
(
ran_index
+
1
)
%
KK
;
return
value
;
}
static
void
ran_array
(
uint32_t
*
a
,
unsigned
n
)
{
unsigned
i
;
for
(
i
=
0
;
i
<
n
;
i
++
)
a
[
i
]
=
ran_get
();
}
static
void
ran_test
(
void
)
{
uint32_t
a
[
2009
];
uint32_t
x
;
unsigned
m
;
ran_init
(
310952
);
for
(
m
=
0
;
m
<
2009
;
m
++
)
ran_array
(
a
,
1009
);
x
=
ran_get
();
assert
(
x
==
461390032
);
}
static
int
get_event
(
unsigned
*
key
,
unsigned
*
time
)
{
static
int
t
=
0
;
int
c
=
getchar
();
if
(
c
==
EOF
)
return
0
;
*
key
=
c
;
t
+=
(
ran_get
()
%
10000
);
*
time
=
t
;
return
1
;
}
int
main
(
int
argc
,
char
**
argv
)
{
struct
yarrow256_ctx
yarrow
;
struct
yarrow_key_event_ctx
estimator
;
struct
yarrow_source
sources
[
2
];
unsigned
c
;
unsigned
t
;
unsigned
processed
;
static
const
char
zeroes
[
100
];
yarrow256_init
(
&
yarrow
,
2
,
sources
);
yarrow_key_event_init
(
&
estimator
);
ran_test
();
ran_init
(
31416
);
/* Fake input to source 0 */
yarrow256_update
(
&
yarrow
,
0
,
200
,
sizeof
(
zeroes
),
zeroes
);
fprintf
(
stderr
,
"source 0 entropy: %d
\n
"
,
sources
[
0
].
estimate
[
YARROW_SLOW
]);
fprintf
(
stderr
,
"seeded: %s
\n
"
,
yarrow
.
seeded
?
"yes"
:
"no"
);
while
(
get_event
(
&
c
,
&
t
))
{
uint8_t
buf
[
8
];
processed
++
;
WRITE_UINT32
(
buf
,
c
);
WRITE_UINT32
(
buf
+
4
,
t
);
yarrow256_update
(
&
yarrow
,
1
,
yarrow_key_event_estimate
(
&
estimator
,
c
,
t
),
sizeof
(
buf
),
buf
);
if
(
yarrow
.
seeded
)
{
static
const
unsigned
sizes
[
4
]
=
{
1
,
16
,
500
,
37
};
unsigned
size
=
sizes
[
processed
%
4
];
uint8_t
buf
[
500
];
yarrow256_random
(
&
yarrow
,
size
,
buf
);
fprintf
(
stderr
,
"%02x "
,
buf
[
0
]);
if
(
!
(
processed
%
16
))
fprintf
(
stderr
,
"
\n
"
);
}
}
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
]);
return
EXIT_SUCCESS
;
}
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