| 106 | } |
| 107 | |
| 108 | static void random_fe_test(secp256k1_fe *x) { |
| 109 | unsigned char bin[32]; |
| 110 | do { |
| 111 | secp256k1_testrand256_test(bin); |
| 112 | if (secp256k1_fe_set_b32_limit(x, bin)) { |
| 113 | return; |
| 114 | } |
| 115 | } while(1); |
| 116 | } |
| 117 | |
| 118 | static void random_fe_non_zero_test(secp256k1_fe *fe) { |
| 119 | do { |
no test coverage detected