mirror of
https://github.com/Mbed-TLS/mbedtls.git
synced 2025-07-29 11:41:15 +03:00
Use simpler int to hex string conversion
Signed-off-by: Werner Lewis <werner.lewis@arm.com>
This commit is contained in:
@ -228,7 +228,7 @@ class BignumAdd(BignumOperation):
|
|||||||
self.symbol = "+"
|
self.symbol = "+"
|
||||||
|
|
||||||
def result(self) -> str:
|
def result(self) -> str:
|
||||||
return quote_str(hex(self.int_l + self.int_r).replace("0x", "", 1))
|
return quote_str("{:x}".format(self.int_l + self.int_r))
|
||||||
|
|
||||||
|
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
|
Reference in New Issue
Block a user