Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Wim Lewis
nettle
Commits
f8aa12d5
Commit
f8aa12d5
authored
Apr 11, 2014
by
Niels Möller
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
EAX bug fix, for 32-bit platforms.
parent
2f742c69
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
2 deletions
+4
-2
ChangeLog
ChangeLog
+2
-0
eax.c
eax.c
+2
-2
No files found.
ChangeLog
View file @
f8aa12d5
2014-04-11 Niels Möller <nisse@lysator.liu.se>
* eax.c (block16_xor): Fixed bug effecting 32-bit platforms.
* Makefile.in (DISTFILES): Deleted memxor.c, already included via
nettle_SOURCES.
* tools/Makefile.in (SOURCES): Add nettle-pbkdf2.c.
...
...
eax.c
View file @
f8aa12d5
...
...
@@ -49,8 +49,8 @@ block16_xor (union nettle_block16 *dst, const union nettle_block16 *src)
dst
->
w
[
0
]
^=
src
->
w
[
0
];
dst
->
w
[
1
]
^=
src
->
w
[
1
];
#if SIZEOF_LONG == 4
dst
->
w
[
2
]
=
src
->
w
[
2
];
dst
->
w
[
3
]
=
src
->
w
[
3
];
dst
->
w
[
2
]
^
=
src
->
w
[
2
];
dst
->
w
[
3
]
^
=
src
->
w
[
3
];
#endif
}
...
...
Write
Preview
Markdown
is supported
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