Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Marcus Hoffmann
nettle
Commits
15240e01
Commit
15240e01
authored
Dec 07, 2001
by
Niels Möller
Browse files
(nettle_mpz_get_str_256): Fixed handling of leading
zeroes. Rev: src/nettle/bignum.c:1.2
parent
276c7716
Changes
1
Hide whitespace changes
Inline
Side-by-side
bignum.c
View file @
15240e01
...
...
@@ -65,7 +65,7 @@ nettle_mpz_get_str_256(unsigned length, uint8_t *s, mpz_t x)
}
if
(
length
)
memset
(
dst
,
0
,
length
);
memset
(
s
,
0
,
length
);
}
void
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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