68 #define ecc_is_valid_key(key, order) (ecc_compare(order, key) == 1)
83 int32_t
ecc_compare(
const uint32_t *a,
const uint32_t *b);
101 void ecc_ec_mult(uint32_t *resultx, uint32_t *resulty,
const uint32_t *px,
const uint32_t *py,
const uint32_t *secret);
int32_t ecc_compare(const uint32_t *a, const uint32_t *b)
Compares the value of a with the value of b.
void ecc_ec_mult(uint32_t *resultx, uint32_t *resulty, const uint32_t *px, const uint32_t *py, const uint32_t *secret)
ECC scalar multiplication on elliptic curve secp256r1.