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
5f2be18e
Commit
5f2be18e
authored
22 years ago
by
Niels Möller
Browse files
Options
Downloads
Patches
Plain Diff
Fixed some @deftypefun declarations.
Rev: src/nettle/nettle.texinfo:1.16
parent
f9023f23
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
nettle.texinfo
+2
-2
2 additions, 2 deletions
nettle.texinfo
with
2 additions
and
2 deletions
nettle.texinfo
+
2
−
2
View file @
5f2be18e
...
@@ -1128,7 +1128,7 @@ Initializes the three context structs from the key. The @var{outer} and
...
@@ -1128,7 +1128,7 @@ Initializes the three context structs from the key. The @var{outer} and
initialized as a copy of the @var
{
inner
}
context.
initialized as a copy of the @var
{
inner
}
context.
@end deftypefun
@end deftypefun
@deftypefun void hmac
_
update(void *@var
{
state
}
, const struct nettle
_
hash *@var
{
H
}
, unsigned @var
{
length
}
, const uint8
_
t *@var
{
data
}
)
@deftypefun void hmac
_
update
(void *@var
{
state
}
, const struct nettle
_
hash *@var
{
H
}
, unsigned @var
{
length
}
, const uint8
_
t *@var
{
data
}
)
This function is called zero or more times to process the message.
This function is called zero or more times to process the message.
Actually, @code
{
hmac
_
update(state, H, length, data)
}
is equivalent to
Actually, @code
{
hmac
_
update(state, H, length, data)
}
is equivalent to
@code
{
H->update(state, length, data)
}
, so if you wish you can use the
@code
{
H->update(state, length, data)
}
, so if you wish you can use the
...
@@ -1809,7 +1809,7 @@ Information about recent key events.
...
@@ -1809,7 +1809,7 @@ Information about recent key events.
Initializes the context.
Initializes the context.
@end deftypefun
@end deftypefun
@deftypefun unsigned yarrow
_
key
_
event
_
estimate(struct yarrow
_
key
_
event
_
ctx *@var
{
ctx
}
, unsigned @var
{
key
}
, unsigned @var
{
time
}
)
@deftypefun unsigned yarrow
_
key
_
event
_
estimate
(struct yarrow
_
key
_
event
_
ctx *@var
{
ctx
}
, unsigned @var
{
key
}
, unsigned @var
{
time
}
)
@var
{
key
}
is the id of the key (ASCII value, hardware key code, X
@var
{
key
}
is the id of the key (ASCII value, hardware key code, X
keysym, @dots
{}
it doesn't matter), and @var
{
time
}
is the timestamp of
keysym, @dots
{}
it doesn't matter), and @var
{
time
}
is the timestamp of
the event. The time must be given in units matching the resolution by
the event. The time must be given in units matching the resolution by
...
...
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