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
Nettle
nettle
Commits
27f4cd98
Commit
27f4cd98
authored
Apr 10, 2013
by
Niels Möller
Browse files
Merge branch 'master' of
git://git.lysator.liu.se/nettle/nettle
parents
f1812845
6d3968ca
Changes
3
Hide whitespace changes
Inline
Side-by-side
ChangeLog
View file @
27f4cd98
2013-04-06 Niels Möller <nisse@lysator.liu.se>
From Edgar E. Iglesias:
* sha3.c (_sha3_update): Fix condition for when the block buffer
is full.
2013-04-04 Niels Möller <nisse@lysator.liu.se>
* ecc-point.c (ecc_point_get): Allow NULL x or y, ignore
...
...
NEWS
View file @
27f4cd98
NEWS for the 2.7 release
Bug fixes:
* Fixed a bug in the buffer handling for incremental sha3
hashing, with a possible buffer overflow. Patch by Edgar
E. Iglesias.
NEWS for the 2.6 release
Bug fixes:
...
...
sha3.c
View file @
27f4cd98
...
...
@@ -61,7 +61,7 @@ _sha3_update (struct sha3_state *state,
if
(
pos
>
0
)
{
unsigned
left
=
block_size
-
pos
;
if
(
length
<
pos
)
if
(
length
<
left
)
{
memcpy
(
block
+
pos
,
data
,
length
);
return
pos
+
length
;
...
...
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