(backend, curve: ec.EllipticCurve)
| 57 | |
| 58 | |
| 59 | def _skip_curve_unsupported(backend, curve: ec.EllipticCurve): |
| 60 | if not backend.elliptic_curve_supported(curve): |
| 61 | pytest.skip( |
| 62 | f"Curve {curve.name} is not supported by this backend {backend}" |
| 63 | ) |
| 64 | |
| 65 | |
| 66 | def _skip_deterministic_ecdsa_unsupported(backend): |
no test coverage detected