mirror of
https://github.com/Mbed-TLS/mbedtls.git
synced 2025-02-26 12:39:55 +00:00
Add some missing type annotations
Signed-off-by: Gilles Peskine <Gilles.Peskine@arm.com>
This commit is contained in:
parent
c377f31ad9
commit
f8a4463bd6
@ -48,7 +48,7 @@ def hex_to_int(val: str) -> int:
|
|||||||
return 0
|
return 0
|
||||||
return int(val, 16)
|
return int(val, 16)
|
||||||
|
|
||||||
def quote_str(val) -> str:
|
def quote_str(val: str) -> str:
|
||||||
return "\"{}\"".format(val)
|
return "\"{}\"".format(val)
|
||||||
|
|
||||||
def bound_mpi(val: int, bits_in_limb: int) -> int:
|
def bound_mpi(val: int, bits_in_limb: int) -> int:
|
||||||
@ -134,7 +134,7 @@ class OperationCommon(test_data_generation.BaseTest):
|
|||||||
def hex_digits(self) -> int:
|
def hex_digits(self) -> int:
|
||||||
return 2 * (self.limbs * self.bits_in_limb // 8)
|
return 2 * (self.limbs * self.bits_in_limb // 8)
|
||||||
|
|
||||||
def format_arg(self, val) -> str:
|
def format_arg(self, val: str) -> str:
|
||||||
if self.input_style not in self.input_styles:
|
if self.input_style not in self.input_styles:
|
||||||
raise ValueError("Unknown input style!")
|
raise ValueError("Unknown input style!")
|
||||||
if self.input_style == "variable":
|
if self.input_style == "variable":
|
||||||
@ -142,7 +142,7 @@ class OperationCommon(test_data_generation.BaseTest):
|
|||||||
else:
|
else:
|
||||||
return val.zfill(self.hex_digits)
|
return val.zfill(self.hex_digits)
|
||||||
|
|
||||||
def format_result(self, res) -> str:
|
def format_result(self, res: int) -> str:
|
||||||
res_str = '{:x}'.format(res)
|
res_str = '{:x}'.format(res)
|
||||||
return quote_str(self.format_arg(res_str))
|
return quote_str(self.format_arg(res_str))
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user