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
Nettle
nettle
Commits
5919dd39
Commit
5919dd39
authored
Jul 08, 2019
by
Niels Möller
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
eax: Use uint64_t member of nettle_block16.
parent
c78f2fdb
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
6 deletions
+6
-6
ChangeLog
ChangeLog
+4
-0
eax.c
eax.c
+2
-6
No files found.
ChangeLog
View file @
5919dd39
2019-07-08 Niels Möller <nisse@lysator.liu.se>
* eax.c (block16_xor): Use uint64_t member of nettle_block16.
2019-07-02 Niels Möller <nisse@lysator.liu.se>
From Dmitry Eremin-Solenikov:
...
...
eax.c
View file @
5919dd39
...
...
@@ -54,12 +54,8 @@ omac_init (union nettle_block16 *state, unsigned t)
static
void
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
];
#endif
dst
->
u64
[
0
]
^=
src
->
u64
[
0
];
dst
->
u64
[
1
]
^=
src
->
u64
[
1
];
}
static
void
...
...
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