Skip to content

Commit 78d10ce

Browse files
white space
1 parent b338d3e commit 78d10ce

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

awscrt/crypto.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -261,7 +261,7 @@ def new_generate(type: ECType) -> 'EC':
261261
Generates a new instance of EC key pair.
262262
"""
263263
return EC(binding=_awscrt.ec_new_generate())
264-
264+
265265
@staticmethod
266266
def new_key_from_der_data(der_data: Union[bytes, bytearray, memoryview]) -> 'EC':
267267
"""
@@ -293,7 +293,7 @@ def export_key(self, export_format: ECExportFormat) -> bytes:
293293
Exports the key in specified format.
294294
"""
295295
return _awscrt.ec_export_key(self._binding, export_format)
296-
296+
297297
def sign(self, digest: Union[bytes, bytearray, memoryview]) -> bytes:
298298
"""
299299
Signs data using a given algorithm.
@@ -309,4 +309,3 @@ def verify(self,digest: Union[bytes, bytearray, memoryview],
309309
Returns True if signature matches and False if not.
310310
"""
311311
return _awscrt.ec_verify(self._binding, digest, signature)
312-

0 commit comments

Comments
 (0)