()
| 383 | |
| 384 | |
| 385 | def test_sync_sign_prehashed_length_error(): |
| 386 | client = DstackClient() |
| 387 | algo = "secp256k1_prehashed" |
| 388 | with pytest.raises(ValueError) as excinfo: |
| 389 | client.sign(algo, b"too short") |
| 390 | assert "32-byte digest" in str(excinfo.value) |
| 391 | |
| 392 | |
| 393 | @pytest.mark.asyncio |
nothing calls this directly
no test coverage detected