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
Brian Smith
nettle
Commits
86a08596
Commit
86a08596
authored
Jan 16, 2014
by
Niels Möller
Browse files
Typo fix for poly1305 C implementation.
parent
bfe4d48d
Changes
2
Hide whitespace changes
Inline
Side-by-side
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
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