mirror of
https://github.com/Mbed-TLS/mbedtls.git
synced 2025-06-25 12:41:56 +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 = "+"
|
||||
|
||||
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__':
|
||||
|
Reference in New Issue
Block a user