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
e084d347
Commit
e084d347
authored
23 years ago
by
Niels Möller
Browse files
Options
Downloads
Patches
Plain Diff
* yarrow.h (struct yarrow_key_event_ctx): New struct.
Rev: src/nettle/ChangeLog:1.36 Rev: src/nettle/yarrow.h:1.5
parent
0a8dcf44
No related branches found
No related tags found
No related merge requests found
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
ChangeLog
+2
-0
2 additions, 0 deletions
ChangeLog
yarrow.h
+15
-0
15 additions, 0 deletions
yarrow.h
with
17 additions
and
0 deletions
ChangeLog
+
2
−
0
View file @
e084d347
2001-10-08 Niels Mller <nisse@cuckoo.hack.org>
2001-10-08 Niels Mller <nisse@cuckoo.hack.org>
* yarrow.h (struct yarrow_key_event_ctx): New struct.
* yarrow256.c (yarrow_fast_reseed): Generate two block of output
* yarrow256.c (yarrow_fast_reseed): Generate two block of output
using the old key and feed into the pool.
using the old key and feed into the pool.
...
...
This diff is collapsed.
Click to expand it.
yarrow.h
+
15
−
0
View file @
e084d347
...
@@ -103,5 +103,20 @@ yarrow256_random(struct yarrow256_ctx *ctx, unsigned length, uint8_t *dst);
...
@@ -103,5 +103,20 @@ yarrow256_random(struct yarrow256_ctx *ctx, unsigned length, uint8_t *dst);
int
int
yarrow256_seeded
(
struct
yarrow256_ctx
*
ctx
);
yarrow256_seeded
(
struct
yarrow256_ctx
*
ctx
);
/* Key event estimator */
struct
yarrow_key_event_ctx
{
/* Counter for initial priming of the state */
unsigned
index
;
unsigned
chars
[
16
];
unsigned
previous
;
};
void
yarrow_key_event_init
(
struct
yarrow_key_event_ctx
*
ctx
);
unsigned
yarrow_key_event_estimate
(
struct
yarrow_key_event_ctx
*
ctx
,
unsigned
key
,
unsigned
time
);
#endif
/* NETTLE_YARROW_COMPAT_H_INCLUDED */
#endif
/* NETTLE_YARROW_COMPAT_H_INCLUDED */
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