Skip to content

Commit 3c7b907

Browse files
committed
introduce and use SECP256K1_{FE,GE,GEJ}_VERIFY macros
By providing an uppercase variant of these verification functions, it is better visible that it is test code and surrounding `#ifdef VERIFY` blocks can be removed (if there is no other code around that could remain in production mode), as they don't serve their purpose any more. At some places intentional blank lines are inserted for grouping and better readadbility.
1 parent e55f903 commit 3c7b907

File tree

5 files changed

+189
-152
lines changed

5 files changed

+189
-152
lines changed

src/field.h

+2
Original file line numberDiff line numberDiff line change
@@ -351,8 +351,10 @@ static int secp256k1_fe_is_square_var(const secp256k1_fe *a);
351351

352352
/** Check invariants on a field element (no-op unless VERIFY is enabled). */
353353
static void secp256k1_fe_verify(const secp256k1_fe *a);
354+
#define SECP256K1_FE_VERIFY(a) secp256k1_fe_verify(a)
354355

355356
/** Check that magnitude of a is at most m (no-op unless VERIFY is enabled). */
356357
static void secp256k1_fe_verify_magnitude(const secp256k1_fe *a, int m);
358+
#define SECP256K1_FE_VERIFY_MAGNITUDE(a, m) secp256k1_fe_verify_magnitude(a, m)
357359

358360
#endif /* SECP256K1_FIELD_H */

0 commit comments

Comments
 (0)