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
Marcus Hoffmann
nettle
Commits
e09706b4
Commit
e09706b4
authored
Jun 17, 2001
by
Niels Möller
Browse files
* blowfish.h (struct blowfish_ctx): Use a two-dimensional array
for s. Rev: src/nettle/blowfish.h:1.4
parent
478484e6
Changes
1
Hide whitespace changes
Inline
Side-by-side
blowfish.h
View file @
e09706b4
...
...
@@ -43,10 +43,7 @@ enum blowfish_error { BLOWFISH_OK, BLOWFISH_WEAK_KEY };
struct
blowfish_ctx
{
uint32_t
s0
[
256
];
uint32_t
s1
[
256
];
uint32_t
s2
[
256
];
uint32_t
s3
[
256
];
uint32_t
s
[
4
][
256
];
uint32_t
p
[
_BLOWFISH_ROUNDS
+
2
];
enum
blowfish_error
status
;
};
...
...
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