| 199 | } |
| 200 | |
| 201 | bool simplicity_fe_invert(frameItem* dst, frameItem src, const txEnv* env) { |
| 202 | (void) env; // env is unused; |
| 203 | |
| 204 | secp256k1_fe a; |
| 205 | read_fe(&a, &src); |
| 206 | secp256k1_fe_inv_var(&a, &a); |
| 207 | write_fe(dst, &a); |
| 208 | return true; |
| 209 | } |
| 210 | |
| 211 | bool simplicity_fe_square_root(frameItem* dst, frameItem src, const txEnv* env) { |
| 212 | (void) env; // env is unused; |
nothing calls this directly
no test coverage detected