pike.git/
src/
post_modules/
Nettle/
hogweed.cmod
Branch:
Tag:
Non-build tags
All tags
No tags
2016-02-01
2016-02-01 23:50:08 by Martin Nilsson <nilsson@fastmail.com>
2bc49aaa80517216f89817959d10b1d200464849 (
3
lines) (+
2
/-
1
)
[
Show
|
Annotate
]
Branch:
8.1
Added some static.
338:
#define SECP521R1 4 #ifndef ecc_point_equal_p
-
int ecc_point_equal_p(const struct ecc_point *a, const struct ecc_point *b)
+
static
int ecc_point_equal_p(const struct ecc_point *a, const struct ecc_point *b)
{ return (a->ecc == b->ecc) && !mpn_cmp(a->p, b->p, ecc_size_a(a->ecc)); }