1
0
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:
Werner Lewis
2022-09-02 17:26:19 +01:00
parent e53be35c09
commit 3edcee72c4

View File

@ -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__':