(self)
| 224 | json.dumps(as_dict) |
| 225 | |
| 226 | def test_to_dict(self): |
| 227 | key = ECKey(private_key, ALGORITHMS.ES256) |
| 228 | self.assert_parameters(key.to_dict(), private=True) |
| 229 | self.assert_parameters(key.public_key().to_dict(), private=False) |
| 230 | |
| 231 | |
| 232 | @pytest.mark.cryptography |
nothing calls this directly
no test coverage detected