(backend)
| 40 | skip_message="Supports argon2 so can't test unsupported path", |
| 41 | ) |
| 42 | def test_unsupported_backend(backend): |
| 43 | with raises_unsupported_algorithm(None): |
| 44 | Argon2id( |
| 45 | salt=b"salt" * 2, length=32, iterations=1, lanes=1, memory_cost=32 |
| 46 | ) |
| 47 | |
| 48 | |
| 49 | @pytest.mark.supported( |
nothing calls this directly
no test coverage detected