We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e8a543f commit 7994141Copy full SHA for 7994141
awscrt/crypto.py
@@ -297,11 +297,11 @@ def export_key(self, export_format: ECExportFormat) -> bytes:
297
"""
298
return _awscrt.ec_export_key(self._binding, export_format)
299
300
- def get_public_coords(self, export_format: ECExportFormat) -> ECPublicCoords:
+ def get_public_coords(self) -> ECPublicCoords:
301
302
Get public coords of the key
303
304
- (x, y) = _awscrt.ec_get_public_coords(self._binding, export_format)
+ (x, y) = _awscrt.ec_get_public_coords(self._binding)
305
return ECPublicCoords(x=x, y=y)
306
307
def sign(self, digest: Union[bytes, bytearray, memoryview]) -> bytes:
0 commit comments