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
71247108
Commit
71247108
authored
Jun 16, 2001
by
Niels Möller
Browse files
* blowfish.h (struct blowfish_ctx): Use the correct size for the p
array. Rev: src/nettle/blowfish.h:1.3
parent
ecf988cd
Changes
1
Hide whitespace changes
Inline
Side-by-side
blowfish.h
View file @
71247108
...
...
@@ -47,7 +47,7 @@ struct blowfish_ctx
uint32_t
s1
[
256
];
uint32_t
s2
[
256
];
uint32_t
s3
[
256
];
uint32_t
p
[
_BLOWFISH_ROUNDS
];
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