Symbol: ecc_point
crypto/ecc.c
1117
bool ecc_point_is_zero(const struct ecc_point *point)
crypto/ecc.c
126
void ecc_free_point(struct ecc_point *p)
crypto/ecc.c
1329
static void ecc_point_mult(struct ecc_point *result,
crypto/ecc.c
1330
const struct ecc_point *point, const u64 *scalar,
crypto/ecc.c
1392
static void ecc_point_add(const struct ecc_point *result,
crypto/ecc.c
1393
const struct ecc_point *p, const struct ecc_point *q,
crypto/ecc.c
1414
void ecc_point_mult_shamir(const struct ecc_point *result,
crypto/ecc.c
1415
const u64 *u1, const struct ecc_point *p,
crypto/ecc.c
1416
const u64 *u2, const struct ecc_point *q,
crypto/ecc.c
1425
struct ecc_point sum = ECC_POINT_INIT(sump[0], sump[1], ndigits);
crypto/ecc.c
1426
const struct ecc_point *points[4];
crypto/ecc.c
1427
const struct ecc_point *point;
crypto/ecc.c
1565
struct ecc_point *pk;
crypto/ecc.c
1599
struct ecc_point *pk)
crypto/ecc.c
1632
struct ecc_point *pk)
crypto/ecc.c
1634
struct ecc_point *nQ;
crypto/ecc.c
1662
struct ecc_point *product, *pk;
crypto/ecc.c
93
struct ecc_point *ecc_alloc_point(unsigned int ndigits)
crypto/ecc.c
95
struct ecc_point *p;
crypto/ecdsa.c
20
struct ecc_point pub_key;
crypto/ecdsa.c
32
struct ecc_point res = ECC_POINT_INIT(x1, y1, ndigits);
crypto/ecrdsa.c
42
struct ecc_point pub_key;
crypto/ecrdsa.c
83
struct ecc_point cc = ECC_POINT_INIT(s, e, ndigits); /* reuse s, e */
drivers/crypto/intel/keembay/keembay-ocs-ecc.c
221
struct ecc_point *result,
drivers/crypto/intel/keembay/keembay-ocs-ecc.c
222
const struct ecc_point *point,
drivers/crypto/intel/keembay/keembay-ocs-ecc.c
346
struct ecc_point *pk)
drivers/crypto/intel/keembay/keembay-ocs-ecc.c
421
struct ecc_point *pk)
drivers/crypto/intel/keembay/keembay-ocs-ecc.c
423
struct ecc_point *nQ;
drivers/crypto/intel/keembay/keembay-ocs-ecc.c
574
struct ecc_point *pk, *result;
drivers/crypto/intel/keembay/keembay-ocs-ecc.c
654
struct ecc_point *pk;
include/crypto/ecc_curve.h
39
struct ecc_point g;
include/crypto/internal/ecc.h
161
struct ecc_point *pk);
include/crypto/internal/ecc.h
175
struct ecc_point *pk);
include/crypto/internal/ecc.h
274
struct ecc_point *ecc_alloc_point(unsigned int ndigits);
include/crypto/internal/ecc.h
281
void ecc_free_point(struct ecc_point *p);
include/crypto/internal/ecc.h
290
bool ecc_point_is_zero(const struct ecc_point *point);
include/crypto/internal/ecc.h
305
void ecc_point_mult_shamir(const struct ecc_point *result,
include/crypto/internal/ecc.h
306
const u64 *x, const struct ecc_point *p,
include/crypto/internal/ecc.h
307
const u64 *y, const struct ecc_point *q,
include/crypto/internal/ecc.h
43
#define ECC_POINT_INIT(x, y, ndigits) (struct ecc_point) { x, y, ndigits }