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
86a08596
Commit
86a08596
authored
Jan 16, 2014
by
Niels Möller
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Typo fix for poly1305 C implementation.
parent
bfe4d48d
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
3 deletions
+5
-3
ChangeLog
ChangeLog
+2
-0
poly1305-internal.c
poly1305-internal.c
+3
-3
No files found.
ChangeLog
View file @
86a08596
2014-01-16 Niels Möller <nisse@lysator.liu.se>
* poly1305-internal.c (s2, s3, s4): Fixed macros.
* poly1305-aes.h (struct poly1305_aes_ctx): Replace struct aes_ctx
by struct aes128_ctx.
* poly1305-aes.c (poly1305_aes_set_key, poly1305_aes_digest):
...
...
poly1305-internal.c
View file @
86a08596
...
...
@@ -44,9 +44,9 @@
#define r3 r.r32[3]
#define r4 r.r32[4]
#define s1 r.r32[5]
#define s2
r.
s32[0]
#define s3
r.
s32[1]
#define s4
r.
s32[2]
#define s2 s32[0]
#define s3 s32[1]
#define s4 s32[2]
#define h0 h.h32[0]
#define h1 h.h32[1]
...
...
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