(backend)
| 27 | skip_message="Requires OpenSSL without poly1305 support", |
| 28 | ) |
| 29 | def test_poly1305_unsupported(backend): |
| 30 | with raises_unsupported_algorithm(_Reasons.UNSUPPORTED_MAC): |
| 31 | Poly1305(b"0" * 32) |
| 32 | |
| 33 | |
| 34 | @pytest.mark.supported( |
nothing calls this directly
no test coverage detected