Skip to content

Commit

Permalink
Expose secp256k1_fe_verify to other modules
Browse files Browse the repository at this point in the history
  • Loading branch information
sipa committed May 10, 2023
1 parent a0e696f commit 3086cb9
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/field.h
Original file line number Diff line number Diff line change
Expand Up @@ -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 */

0 comments on commit 3086cb9

Please sign in to comment.