Expose secp256k1_fe_verify to other modules

This commit is contained in:
Pieter Wuille 2020-09-01 16:33:22 -07:00
parent a0e696fd4d
commit 3086cb90ac

View File

@ -143,4 +143,9 @@ static void secp256k1_fe_get_bounds(secp256k1_fe *r, int m);
/** Determine whether a is a square (modulo p). */
static int secp256k1_fe_is_square_var(const secp256k1_fe *a);
#ifdef VERIFY
/** Check invariants on a field element. */
static void secp256k1_fe_verify(const secp256k1_fe *a);
#endif
#endif /* SECP256K1_FIELD_H */