Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Dmitry Baryshkov
nettle
Commits
b58a69c8
Commit
b58a69c8
authored
Apr 21, 2013
by
Niels Möller
Browse files
Fixed comment typo.
parent
1f1b2f10
Changes
1
Hide whitespace changes
Inline
Side-by-side
cast128.c
View file @
b58a69c8
...
@@ -179,7 +179,7 @@ cast128_set_key(struct cast128_ctx *ctx,
...
@@ -179,7 +179,7 @@ cast128_set_key(struct cast128_ctx *ctx,
if
((
i
*
4
+
3
)
<
keybytes
)
x
[
i
]
|=
(
uint32_t
)
rawkey
[
i
*
4
+
3
];
if
((
i
*
4
+
3
)
<
keybytes
)
x
[
i
]
|=
(
uint32_t
)
rawkey
[
i
*
4
+
3
];
}
}
/* FIXME: For the shorter key sizes, the last 4 subkeys are not
/* FIXME: For the shorter key sizes, the last 4 subkeys are not
used, and need not be generated
d
, nor stored. */
used, and need not be generated, nor stored. */
/* Generate 32 subkeys, four at a time */
/* Generate 32 subkeys, four at a time */
for
(
i
=
0
;
i
<
32
;
i
+=
4
)
{
for
(
i
=
0
;
i
<
32
;
i
+=
4
)
{
switch
(
i
&
4
)
{
switch
(
i
&
4
)
{
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a 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