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
Dmitry Baryshkov
nettle
Commits
84447d24
Commit
84447d24
authored
Feb 15, 2013
by
Niels Möller
Browse files
Whitespace fixes.
parent
2367b2bd
Changes
1
Hide whitespace changes
Inline
Side-by-side
testsuite/ecc-mul-g-test.c
View file @
84447d24
...
...
@@ -9,16 +9,16 @@ test_main (void)
gmp_randinit_default
(
state
);
mpz_init
(
r
);
for
(
i
=
0
;
ecc_curves
[
i
];
i
++
)
{
const
struct
ecc_curve
*
ecc
=
ecc_curves
[
i
];
mp_size_t
size
=
ecc_size
(
ecc
);
mp_size_t
size
=
ecc_size
(
ecc
);
mp_limb_t
*
p
=
xalloc_limbs
(
ecc_size_j
(
ecc
));
mp_limb_t
*
q
=
xalloc_limbs
(
ecc_size_j
(
ecc
));
mp_limb_t
*
n
=
xalloc_limbs
(
size
);
mp_limb_t
*
scratch
=
xalloc_limbs
(
ecc_mul_g_itch
(
ecc
));
mpn_zero
(
n
,
size
);
n
[
0
]
=
1
;
...
...
@@ -53,6 +53,6 @@ test_main (void)
free
(
q
);
free
(
scratch
);
}
mpz_clear
(
r
);
mpz_clear
(
r
);
gmp_randclear
(
state
);
}
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