EC_POINT          131 extra_lib/include/openssl/ec.h typedef struct ec_point_st EC_POINT;
EC_POINT          219 extra_lib/include/openssl/ec.h int EC_GROUP_set_generator(EC_GROUP *group, const EC_POINT *generator, const BIGNUM *order, const BIGNUM *cofactor);
EC_POINT          225 extra_lib/include/openssl/ec.h const EC_POINT *EC_GROUP_get0_generator(const EC_GROUP *group);
EC_POINT          388 extra_lib/include/openssl/ec.h EC_POINT *EC_POINT_new(const EC_GROUP *group);
EC_POINT          393 extra_lib/include/openssl/ec.h void EC_POINT_free(EC_POINT *point);
EC_POINT          398 extra_lib/include/openssl/ec.h void EC_POINT_clear_free(EC_POINT *point);
EC_POINT          405 extra_lib/include/openssl/ec.h int EC_POINT_copy(EC_POINT *dst, const EC_POINT *src);
EC_POINT          413 extra_lib/include/openssl/ec.h EC_POINT *EC_POINT_dup(const EC_POINT *src, const EC_GROUP *group);
EC_POINT          419 extra_lib/include/openssl/ec.h const EC_METHOD *EC_POINT_method_of(const EC_POINT *point);
EC_POINT          426 extra_lib/include/openssl/ec.h int EC_POINT_set_to_infinity(const EC_GROUP *group, EC_POINT *point);
EC_POINT          437 extra_lib/include/openssl/ec.h int EC_POINT_set_Jprojective_coordinates_GFp(const EC_GROUP *group, EC_POINT *p,
EC_POINT          450 extra_lib/include/openssl/ec.h 	const EC_POINT *p, BIGNUM *x, BIGNUM *y, BIGNUM *z, BN_CTX *ctx);
EC_POINT          460 extra_lib/include/openssl/ec.h int EC_POINT_set_affine_coordinates_GFp(const EC_GROUP *group, EC_POINT *p,
EC_POINT          472 extra_lib/include/openssl/ec.h 	const EC_POINT *p, BIGNUM *x, BIGNUM *y, BN_CTX *ctx);
EC_POINT          482 extra_lib/include/openssl/ec.h int EC_POINT_set_compressed_coordinates_GFp(const EC_GROUP *group, EC_POINT *p,
EC_POINT          493 extra_lib/include/openssl/ec.h int EC_POINT_set_affine_coordinates_GF2m(const EC_GROUP *group, EC_POINT *p,
EC_POINT          505 extra_lib/include/openssl/ec.h 	const EC_POINT *p, BIGNUM *x, BIGNUM *y, BN_CTX *ctx);
EC_POINT          515 extra_lib/include/openssl/ec.h int EC_POINT_set_compressed_coordinates_GF2m(const EC_GROUP *group, EC_POINT *p,
EC_POINT          528 extra_lib/include/openssl/ec.h size_t EC_POINT_point2oct(const EC_GROUP *group, const EC_POINT *p,
EC_POINT          540 extra_lib/include/openssl/ec.h int EC_POINT_oct2point(const EC_GROUP *group, EC_POINT *p,
EC_POINT          544 extra_lib/include/openssl/ec.h BIGNUM *EC_POINT_point2bn(const EC_GROUP *, const EC_POINT *,
EC_POINT          546 extra_lib/include/openssl/ec.h EC_POINT *EC_POINT_bn2point(const EC_GROUP *, const BIGNUM *,
EC_POINT          547 extra_lib/include/openssl/ec.h 	EC_POINT *, BN_CTX *);
EC_POINT          548 extra_lib/include/openssl/ec.h char *EC_POINT_point2hex(const EC_GROUP *, const EC_POINT *,
EC_POINT          550 extra_lib/include/openssl/ec.h EC_POINT *EC_POINT_hex2point(const EC_GROUP *, const char *,
EC_POINT          551 extra_lib/include/openssl/ec.h 	EC_POINT *, BN_CTX *);
EC_POINT          566 extra_lib/include/openssl/ec.h int EC_POINT_add(const EC_GROUP *group, EC_POINT *r, const EC_POINT *a, const EC_POINT *b, BN_CTX *ctx);
EC_POINT          575 extra_lib/include/openssl/ec.h int EC_POINT_dbl(const EC_GROUP *group, EC_POINT *r, const EC_POINT *a, BN_CTX *ctx);
EC_POINT          583 extra_lib/include/openssl/ec.h int EC_POINT_invert(const EC_GROUP *group, EC_POINT *a, BN_CTX *ctx);
EC_POINT          590 extra_lib/include/openssl/ec.h int EC_POINT_is_at_infinity(const EC_GROUP *group, const EC_POINT *p);
EC_POINT          598 extra_lib/include/openssl/ec.h int EC_POINT_is_on_curve(const EC_GROUP *group, const EC_POINT *point, BN_CTX *ctx);
EC_POINT          607 extra_lib/include/openssl/ec.h int EC_POINT_cmp(const EC_GROUP *group, const EC_POINT *a, const EC_POINT *b, BN_CTX *ctx);
EC_POINT          609 extra_lib/include/openssl/ec.h int EC_POINT_make_affine(const EC_GROUP *, EC_POINT *, BN_CTX *);
EC_POINT          610 extra_lib/include/openssl/ec.h int EC_POINTs_make_affine(const EC_GROUP *, size_t num, EC_POINT *[], BN_CTX *);
EC_POINT          622 extra_lib/include/openssl/ec.h int EC_POINTs_mul(const EC_GROUP *group, EC_POINT *r, const BIGNUM *n, size_t num, const EC_POINT *p[], const BIGNUM *m[], BN_CTX *ctx);
EC_POINT          633 extra_lib/include/openssl/ec.h int EC_POINT_mul(const EC_GROUP *group, EC_POINT *r, const BIGNUM *n, const EC_POINT *q, const BIGNUM *m, BN_CTX *ctx);
EC_POINT          760 extra_lib/include/openssl/ec.h const EC_POINT *EC_KEY_get0_public_key(const EC_KEY *key);
EC_POINT          768 extra_lib/include/openssl/ec.h int EC_KEY_set_public_key(EC_KEY *key, const EC_POINT *pub);
EC_POINT           94 extra_lib/include/openssl/ecdh.h int ECDH_compute_key(void *out, size_t outlen, const EC_POINT *pub_key, EC_KEY *ecdh,