Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
L
lsh
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
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
LSH
lsh
Commits
244c549e
Commit
244c549e
authored
Feb 13, 2002
by
Niels Möller
Browse files
Options
Downloads
Patches
Plain Diff
(struct aes_ctx): Deleted space for inverse subkeys.
Rev: src/nettle/aes.h:1.5
parent
b3532d33
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/nettle/aes.h
+5
-3
5 additions, 3 deletions
src/nettle/aes.h
with
5 additions
and
3 deletions
src/nettle/aes.h
+
5
−
3
View file @
244c549e
...
@@ -40,12 +40,14 @@
...
@@ -40,12 +40,14 @@
struct
aes_ctx
struct
aes_ctx
{
{
uint32_t
keys
[
60
];
/* maximum size of key schedule */
uint32_t
keys
[
60
];
/* maximum size of key schedule */
uint32_t
ikeys
[
60
];
/* inverse key schedule */
unsigned
nrounds
;
/* number of rounds to use for our key size */
unsigned
nrounds
;
/* number of rounds to use for our key size */
};
};
void
void
aes_set_key
(
struct
aes_ctx
*
ctx
,
aes_set_encrypt_key
(
struct
aes_ctx
*
ctx
,
unsigned
length
,
const
uint8_t
*
key
);
void
aes_set_decrypt_key
(
struct
aes_ctx
*
ctx
,
unsigned
length
,
const
uint8_t
*
key
);
unsigned
length
,
const
uint8_t
*
key
);
void
void
...
...
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