Skip to content

Commit 7994141

Browse files
no it does not
1 parent e8a543f commit 7994141

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

awscrt/crypto.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -297,11 +297,11 @@ def export_key(self, export_format: ECExportFormat) -> bytes:
297297
"""
298298
return _awscrt.ec_export_key(self._binding, export_format)
299299

300-
def get_public_coords(self, export_format: ECExportFormat) -> ECPublicCoords:
300+
def get_public_coords(self) -> ECPublicCoords:
301301
"""
302302
Get public coords of the key
303303
"""
304-
(x, y) = _awscrt.ec_get_public_coords(self._binding, export_format)
304+
(x, y) = _awscrt.ec_get_public_coords(self._binding)
305305
return ECPublicCoords(x=x, y=y)
306306

307307
def sign(self, digest: Union[bytes, bytearray, memoryview]) -> bytes:

0 commit comments

Comments
 (0)