Lines Matching refs:crypto_ec
714 struct crypto_ec;
722 struct crypto_ec * crypto_ec_init(int group);
728 void crypto_ec_deinit(struct crypto_ec *e);
735 size_t crypto_ec_prime_len(struct crypto_ec *e);
742 size_t crypto_ec_prime_len_bits(struct crypto_ec *e);
749 size_t crypto_ec_order_len(struct crypto_ec *e);
756 const struct crypto_bignum * crypto_ec_get_prime(struct crypto_ec *e);
763 const struct crypto_bignum * crypto_ec_get_order(struct crypto_ec *e);
765 const struct crypto_bignum * crypto_ec_get_a(struct crypto_ec *e);
766 const struct crypto_bignum * crypto_ec_get_b(struct crypto_ec *e);
781 struct crypto_ec_point * crypto_ec_point_init(struct crypto_ec *e);
797 int crypto_ec_point_x(struct crypto_ec *e, const struct crypto_ec_point *p,
812 int crypto_ec_point_to_bin(struct crypto_ec *e,
825 struct crypto_ec_point * crypto_ec_point_from_bin(struct crypto_ec *e,
836 int crypto_ec_point_add(struct crypto_ec *e, const struct crypto_ec_point *a,
848 int crypto_ec_point_mul(struct crypto_ec *e, const struct crypto_ec_point *p,
858 int crypto_ec_point_invert(struct crypto_ec *e, struct crypto_ec_point *p);
868 int crypto_ec_point_solve_y_coord(struct crypto_ec *e,
879 crypto_ec_point_compute_y_sqr(struct crypto_ec *e,
889 int crypto_ec_point_is_at_infinity(struct crypto_ec *e,
898 int crypto_ec_point_is_on_curve(struct crypto_ec *e,
908 int crypto_ec_point_cmp(const struct crypto_ec *e,