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
dd94851a
Commit
dd94851a
authored
Aug 23, 2014
by
Niels Möller
Browse files
Deleted unused INITIAL argument for ecc_a_to_j.
parent
308c1089
Changes
4
Hide whitespace changes
Inline
Side-by-side
ChangeLog
View file @
dd94851a
2014-08-23 Niels Möller <nisse@lysator.liu.se>
* ecc-a-to-j.c (ecc_a_to_j): Deleted INITIAL argument.
* ecc.h (ecc_a_to_j): Updated prototype.
* ecc-mul-a.c (ecc_mul_a, table_init): Updated calls to ecc_a_to_j.
* ecc-mul-a.c (ecc_mul_a): Deleted INITIAL argument, all callers,
except the tests, pass 1. Updated all callers.
(table_init): Likewise deleted INITIAL.
...
...
ecc-a-to-j.c
View file @
dd94851a
...
...
@@ -40,10 +40,9 @@
void
ecc_a_to_j
(
const
struct
ecc_curve
*
ecc
,
int
initial
,
mp_limb_t
*
r
,
const
mp_limb_t
*
p
)
{
if
(
ecc
->
use_redc
&&
initial
)
if
(
ecc
->
use_redc
)
{
mpn_copyd
(
r
+
ecc
->
size
,
p
,
2
*
ecc
->
size
);
...
...
ecc-mul-a.c
View file @
dd94851a
...
...
@@ -67,7 +67,7 @@ ecc_mul_a (const struct ecc_curve *ecc,
unsigned
i
;
ecc_a_to_j
(
ecc
,
1
,
pj
,
p
);
ecc_a_to_j
(
ecc
,
pj
,
p
);
mpn_zero
(
r
,
3
*
ecc
->
size
);
for
(
i
=
ecc
->
size
,
is_zero
=
1
;
i
--
>
0
;
)
...
...
@@ -111,7 +111,7 @@ table_init (const struct ecc_curve *ecc,
unsigned
j
;
mpn_zero
(
TABLE
(
0
),
3
*
ecc
->
size
);
ecc_a_to_j
(
ecc
,
1
,
TABLE
(
1
),
p
);
ecc_a_to_j
(
ecc
,
TABLE
(
1
),
p
);
for
(
j
=
2
;
j
<
size
;
j
+=
2
)
{
...
...
ecc.h
View file @
dd94851a
...
...
@@ -179,11 +179,9 @@ ecc_size_j (const struct ecc_curve *ecc);
infinity points properly? */
/* Converts a point P in affine coordinates into a point R in jacobian
coordinates. If INITIAL is non-zero, and the curve uses montgomery
coordinates, also convert coordinates to montgomery form. */
coordinates. */
void
ecc_a_to_j
(
const
struct
ecc_curve
*
ecc
,
int
initial
,
mp_limb_t
*
r
,
const
mp_limb_t
*
p
);
/* Converts a point P in jacobian coordinates into a point R in affine
...
...
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